-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.05 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.05 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
{
"name": "bridgeai",
"version": "1.0.0",
"private": true,
"workspaces": [
"client",
"server",
"mobile"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=server\" \"npm run dev --workspace=client\"",
"start": "npm run start --workspace=server",
"build": "npm run build --workspace=server && npm run build --workspace=client",
"railway:build": "npm run build --workspace=server",
"db:reset": "npm run db:reset --workspace=server",
"presentation:build": "node scripts/generate-presentation.mjs",
"mobile:start": "npm run start --workspace=mobile",
"mobile:ios": "npm run ios --workspace=mobile",
"mobile:android": "npm run android --workspace=mobile",
"mobile:web": "npm run web --workspace=mobile",
"mobile:typecheck": "npm run typecheck --workspace=mobile",
"dev:mobile": "concurrently \"npm run dev --workspace=server\" \"npm run start --workspace=mobile\""
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"concurrently": "^8.2.2",
"pptxgenjs": "^4.0.1"
}
}