Alpha stage commit

This commit is contained in:
2026-07-02 21:04:05 +02:00
parent c03b183dfb
commit abed21be21
136 changed files with 15531 additions and 15 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"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"
}
}