-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "node-firebase-mobile-backend",
"version": "1.0.0",
"private": true,
"description": "Synthetic transport backend — Node.js, TypeScript, Firebase emulators",
"scripts": {
"build": "npm run build --prefix functions",
"demo": "npm run build && firebase emulators:start --project demo-transport",
"seed:emulator": "npm --prefix functions exec -- ts-node ../scripts/seed-emulator.ts",
"test": "firebase emulators:exec --only firestore \"npm run test:unit --prefix functions\" --project demo-transport",
"test:unit": "npm run test:unit --prefix functions",
"lint": "npm run lint --prefix functions"
},
"devDependencies": {
"firebase-tools": "^13.29.1"
},
"engines": {
"node": ">=20"
}
}