-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "my-turborepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"type-check": "turbo type-check",
"chat:dev": "cd apps/chat && npm run dev",
"chat:build": "cd apps/chat && npm run build",
"chat:start": "cd apps/chat && npm start",
"dev:all": "concurrently \"npm run dev\" \"npm run chat:dev\"",
"postinstall": "cd apps/web && npx prisma generate --schema=src/lib/prisma/schema.user.prisma && npx prisma generate --schema=src/lib/prisma/schema.social.prisma && npx prisma generate --schema=src/lib/prisma/schema.item.prisma && npx prisma generate --schema=src/lib/prisma/schema.community.prisma && npx prisma generate --schema=src/lib/prisma/schema.audit.prisma"
},
"devDependencies": {
"concurrently": "^9.2.1",
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.1",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@swc/helpers": "^0.5.17"
}
}