-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.34 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
39
40
41
42
43
44
{
"name": "functions",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test -- --watch -c jest-unit-config.js",
"test:integration": "yarn test -- --watch -c jest-integration-config.js",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage"
},
"engines": {
"node": "12"
},
"main": "lib/index.js",
"dependencies": {
"@types/validator": "^13.1.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"firebase-admin": "^8.6.0",
"firebase-functions": "^3.3.0",
"validator": "^13.1.17"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"firebase-functions-test": "^0.1.6",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.2",
"ts-jest": "<23.10.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"private": true
}