-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 791 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": "war-room",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "npm --workspace @workspace/db run generate",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"format": "turbo format",
"typecheck": "turbo typecheck",
"dev:web": "npm --filter web dev",
"dev:api": "cd apps/api && uvicorn main:app --reload"
},
"devDependencies": {
"@workspace/eslint-config": "*",
"@workspace/typescript-config": "*",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.17",
"typescript": "5.9.3"
},
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*",
"services/*"
]
}