-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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": "obby-dev",
"version": "0.5.0",
"bin": {
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint:init": "ultracite init",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"translate": "turbo translate",
"boundaries": "turbo boundaries",
"db:migrate": "cd packages/database && npx drizzle-kit migrate",
"db:generate": "cd packages/database && npx drizzle-kit generate",
"db:pull": "cd packages/database && npx drizzle-kit pull",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker",
"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": "2.2.0",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.5.3",
"@types/node": "^22.15.21",
"tsup": "^8.5.0",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"ultracite": "^5.1.3",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.11.0",
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.0"
},
"type": "module"
}