-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "next-open-forge",
"version": "1.0.0",
"type": "module",
"bin": {
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=web --filter=storybook",
"dev:app": "turbo dev --filter=app --filter=storybook --filter=studio",
"dev:docs": "turbo dev --filter=docs",
"check": "ultracite check",
"fix": "ultracite fix",
"test": "turbo test",
"analyze": "turbo analyze",
"translate": "turbo translate",
"boundaries": "turbo boundaries",
"bump-deps": "npx npm-check-updates --deep -u -x recharts && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"migrate": "cd packages/database && npx drizzle-kit generate",
"push": "cd packages/database && npx drizzle-kit push",
"clean": "git clean -xdf node_modules"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.6",
"@biomejs/biome": "2.3.14",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.8.3",
"@types/node": "^25.2.1",
"tsup": "^8.5.1",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"ultracite": "7.1.4",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.25.0",
"dependencies": {
"@clack/prompts": "^1.0.0",
"commander": "^14.0.3"
}
}