-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 750 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 750 Bytes
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
{
"name": "turbo",
"private": true,
"scripts": {
"build:worker" : "cd ./apps/workers && tsc -b",
"start:worker" : "cd ./apps/workers && pnpm start",
"build:server" : "cd ./apps/server && tsc -b",
"db:generate" : "cd ./packages/DB && npx prisma generate",
"start:server" : "cd ./apps/server && pnpm start",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.8.1",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"openai": "^6.17.0"
}
}