-
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) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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": "bandmap",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/shared",
"packages/backend",
"packages/web",
"packages/infra"
],
"scripts": {
"build": "tsc --build && npm run --workspace @bandmap/web build",
"build:frontend": "npm run --workspace @bandmap/web build",
"clean": "tsc --build --clean",
"lint": "eslint .",
"format": "prettier --write 'packages/*/src/**/*.ts' 'integration-tests/**/*.ts'",
"test": "npm run build && npm test --workspaces --if-present",
"test:integration": "npm run build && npm run --workspace @bandmap/backend test:integration",
"deploy:backend": "bash tools/deploy-backend.sh",
"deploy:frontend": "bash tools/deploy-frontend-infra.sh",
"deploy:assets": "bash tools/deploy-frontend-assets.sh",
"serve": "cd packages/web && npx vite"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.3",
"eslint": "^10.0.0",
"@eslint/js": "^10.0.0",
"typescript-eslint": "^8.57.1",
"prettier": "^3.8.0"
}
}