-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
31 lines (30 loc) · 1018 Bytes
/
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
{
"name": "@googlecloudplatform/firebase-extensions",
"private": true,
"devDependencies": {
"@types/node": "^14.11.2",
"dotenv": "^16.3.1",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^5.0.1",
"lerna": "^4.0.0",
"prettier": "^3.0.3",
"typescript": "^4.0.3"
},
"scripts": {
"new-format": "prettier --write .",
"format": "gts fix",
"lerna:bootstrap": "lerna bootstrap --no-ci",
"lerna:link": "lerna link",
"lerna:clean": "lerna clean,",
"prepare": "npm run lerna:bootstrap && npm run lerna:link",
"reset:emulator": "npx kill-port 8080 8085 4000 4400 5001 9199 9000 9099",
"test": "cd _emulator && npm run reset:emulator && firebase emulators:start --project=demo-gcp & sleep 100 && lerna run test --concurrency 1",
"test:local": "lerna run test --concurrency 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "lerna run build",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
}
}