Files
pikebacker/package.json
2026-07-02 21:04:05 +02:00

26 lines
1.0 KiB
JSON

{
"name": "pikebacker",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"scripts": {
"build": "npm -w @pikebacker/shared run build && npm -w @pikebacker/api run build && npm -w @pikebacker/web run build && npm -w @pikebacker/mobile run build && npm -w @pikebacker/data-pipeline run build",
"test": "npm -w @pikebacker/shared run test && npm -w @pikebacker/api run test",
"typecheck": "npm -w @pikebacker/shared run build && npm -w @pikebacker/shared run typecheck && npm -w @pikebacker/api run typecheck && npm -w @pikebacker/web run typecheck && npm -w @pikebacker/mobile run typecheck && npm -w @pikebacker/data-pipeline run typecheck",
"dev:api": "npm -w @pikebacker/api run dev",
"dev:web": "npm -w @pikebacker/web run dev",
"fixtures:pois": "npm -w @pikebacker/data-pipeline run normalize:sample"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.9"
}
}