-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 852 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 852 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
{
"name": "websocket-workers-chat",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@repo/web",
"dev:api": "turbo run dev --filter=@repo/api",
"lint": "turbo run lint",
"format": "turbo run format",
"check-types": "turbo run check-types",
"ci": "biome ci && turbo run check-types",
"migrate": "turbo run migrate --filter=@repo/db",
"studio": "turbo run studio --filter=@repo/db",
"up": "turbo run up --filter=@repo/infrastructure",
"destroy": "turbo run destroy --filter=@repo/infrastructure"
},
"devDependencies": {
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">=18"
},
"dependencies": {
"@biomejs/biome": "^2.2.2",
"tsup": "^8.5.0"
}
}