-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 959 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "newsreader-graphql",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon --exec babel-node server.js",
"start": "node server.js",
"test": "jest"
},
"author": "@Romain-Moreaux",
"license": "ISC",
"jest": {
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"html",
"text"
]
},
"dependencies": {
"apollo-datasource-rest": "^0.6.9",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.19.0",
"express": "4.17.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"apollo-server-testing": "^2.9.12",
"jest": "^24.9.0",
"nodemon": "^2.0.1"
}
}