forked from itzam-ai/itzam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "@itzam/turbo",
"private": true,
"scripts": {
"build": "turbo run build",
"predev": "pnpm copy-env",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"postinstall": "manypkg check",
"clear-env": "tsx scripts/clear-env.ts",
"copy-env": "tsx scripts/copy-env.ts",
"install-python": "cd apps/python && uv sync && cd ../..",
"db:drop": "cd packages/server && pnpm db:drop",
"db:push": "turbo run db:push",
"db:seed": "cd packages/server && pnpm db:seed",
"db:sample-data": "cd packages/server && pnpm db:sample-data",
"db:studio": "cd packages/server && pnpm db:studio"
},
"devDependencies": {
"@manypkg/cli": "^0.23.0",
"prettier": "^3.5.3",
"supabase": "^2.23.4",
"tsx": "^4.19.3",
"turbo": "^2.5.0",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=18"
}
}