-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "next-forge",
"version": "5.2.1",
"bin": {
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"start": "turbo start",
"check": "ultracite check",
"fix": "ultracite fix",
"analyze": "turbo analyze",
"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": {
"@biomejs/biome": "^2.4.9",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.8.21",
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"turbo": "^2.8.21",
"typescript": "^6.0.2",
"ultracite": "^7.3.2",
"vercel-seo-audit": "^2.5.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.26.2",
"dependencies": {
"@clack/prompts": "^1.1.0",
"commander": "^14.0.3"
},
"type": "module"
}