-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
35
36
37
38
{
"name": "project",
"scripts": {
"build": "yarn --silent tsc && cp package.json dist/ && cp yarn.lock dist/",
"serve": "yarn --silent build && yarn --silent firebase emulators:start --only functions",
"shell": "yarn --silent build && yarn --silent firebase functions:shell",
"deploy": "yarn --silent firebase deploy",
"logs": "yarn --silent firebase functions:log",
"test-rules":"yarn --silent firebase emulators:exec 'yarn --silent jest' --only firestore"
},
"engines": {
"node": "8"
},
"main": "index.js",
"dependencies": {
"firebase-admin": "^8.9.0",
"firebase-functions": "^3.3.0"
},
"devDependencies": {
"@firebase/testing": "^0.18.2",
"@types/jest": "^25.1.5",
"firebase-functions-test": "^0.1.6",
"firebase-tools": "^8.0.1",
"jest": "^24.0",
"typescript": "^3.8.3",
"ts-jest": "^24.2.0"
},
"jest": {
"transform": {
"\\.ts": "ts-jest"
},
"testRegex": "./.*/.*test.ts",
"moduleFileExtensions": [
"ts",
"js"
]
}
}