-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 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
33
{
"name": "kivo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev -w apps/api",
"dev:web": "npm run dev -w apps/web",
"build": "npm run build -w packages/shared && npm run build -w apps/api && npm run build -w apps/web",
"build:api": "npm run build -w apps/api",
"build:web": "npm run build -w apps/web",
"deploy": "npm run build -w packages/shared && npm run deploy -w apps/api",
"db:migrate": "npm run db:migrate -w apps/api",
"db:seed": "npm run db:seed -w apps/api",
"test": "npm run test --workspaces --if-present",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@types/node": "^20.10.0",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"typescript": "^5.3.3",
"wrangler": "^4.54.0"
},
"engines": {
"node": ">=18.0.0"
}
}