-
-
Notifications
You must be signed in to change notification settings - Fork 455
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 KB
/
package.json
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
{
"name": "next-forge",
"version": "3.3.9",
"bin": {
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"translate": "turbo translate",
"boundaries": "turbo boundaries",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"migrate": "cd packages/database && npx prisma format && npx prisma generate && npx prisma db push",
"clean": "git clean -xdf node_modules"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "1.9.4",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.4.4",
"@types/node": "^22.13.9",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"ultracite": "^4.1.20",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.5.2",
"dependencies": {
"@clack/prompts": "^0.10.0",
"commander": "^13.1.0"
},
"type": "module"
}