-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.28 KB
/
package.json
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
34
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "npm ci && npx lerna bootstrap",
"build": "npx lerna run build --stream",
"start:emulators": "npx firebase emulators:start",
"start:app": "npm run start --prefix packages/game-app",
"test:firestore": "npm run test --prefix packages/firestore",
"test:database": "npm run test --prefix packages/database",
"test:functions": "npm run test --prefix packages/functions",
"scripts:load-initial-data": "node scripts/load-initial-data.js",
"scripts:deploy-database-instances-rules": "node scripts/deploy-rules-to-rtdb-instances.js",
"scripts:load-initial-data:local": "npx env-cmd -f .env node scripts/load-initial-data.js",
"version-and-release": "npx lerna version --create-release github",
"bom": "cyclonedx-npm --output-format XML --output-file bom.xml"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@cyclonedx/cyclonedx-npm": "^1.19.3",
"firebase-admin": "^9.4.2",
"firebase-tools": "^9.2.2",
"fs-extra": "^8.1.0",
"husky": "^4.3.6",
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npx lerna run prettify-staged"
}
}
}