-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
45
46
47
48
49
50
{
"name": "apollo-btp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src -d .build --source-maps",
"host": "node index.js",
"buildAndRun": "npm run build && npm run host",
"dev": "nodemon --exec npm run buildAndRun",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --collectCoverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.13.10",
"apollo-server": "^2.21.1",
"firebase-admin": "^9.5.0",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"nodemon": "^2.0.7"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.mock.js",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": -5
}
}
}
}