-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 864 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 864 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
29
30
31
32
33
34
35
{
"name": "OSC-INTERNAL",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prisma": "^7.3.0",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.19",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"generate:db": "cd packages/db/src && bunx prisma generate",
"start:backend": "cd apps/server/src && bun run index.ts",
"start:frontend": "cd apps/client && bun start",
"prepare": "husky"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@prisma/client": "^7.3.0"
}
}