-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 858 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 858 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
{
"name": "turborepo-try",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"generate:db": "cd packages/db && bun prisma generate",
"start:backend": "cd apps/http-backend && bun run index.ts",
"start:ws": "cd apps/web-socket-backend && bun run index.ts",
"start:frontend": "cd apps/web && bun run start"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.3",
"typescript": "5.8.2"
},
"engines": {
"node": "20.x"
},
"packageManager": "bun@1.2.13",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"lucide-react": "^0.511.0",
"react-use-websocket": "^4.13.0"
}
}