-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 KB
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
45
{
"name": "ff-protect-functions",
"description": "Lightweight backend for ff-protect to track down COVID-19 clusters",
"scripts": {
"start": "npm run build && firebase serve --only functions",
"test": "jest --coverage",
"testcircleci": "jest --coverage --runInBand",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"deploy": "firebase deploy --only functions",
"build": "npm run clean && tsc && npm run cleanbuild",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"logs": "firebase functions:log",
"clean": "del-cli --force ./build",
"cleanbuild": "del-cli --force ./build/**/*.spec.js* ./build/**/_test-data"
},
"engines": {
"node": "10"
},
"main": "build/index.js",
"dependencies": {
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.5.0",
"moment": "^2.24.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"firebase-functions-test": "^0.2.0",
"jest": "^25.1.0",
"typescript": "^3.8.3"
}
}