-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.11 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
{
"name": "healvista",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "npm run build -w packages/shared && npm-run-all --parallel dev:*",
"dev:client": "npm run dev -w apps/client",
"dev:server": "npm run dev -w apps/server",
"build": "npm run build -w packages/shared && npm run build -w apps/server && npm run build -w apps/client",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write .",
"test": "vitest run && npm run test -w apps/client",
"db:migrate": "npm run db:migrate -w apps/server",
"db:deploy": "npm run db:deploy -w apps/server",
"db:studio": "npm run db:studio -w apps/server",
"db:seed": "npm run db:seed -w apps/server",
"db:embed": "npm run db:embed -w apps/server",
"db:reset": "npm run db:reset -w apps/server"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}