-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "eq-publisher",
"version": "1.0.0",
"main": "src/main.js",
"license": "MIT",
"scripts": {
"start": "nodemon",
"start:dev": "nodemon --inspect=0.0.0.0:5858",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"apollo-fetch": "latest",
"cheerio": "latest",
"eslint-config-eq-author": "latest",
"express": "latest",
"express-pino-logger": "latest",
"graphql": "latest",
"helmet": "latest",
"jsonwebtoken": "latest",
"lodash": "4.17.21",
"nodemon": "2.0.15",
"request": "latest",
"request-promise": "latest",
"uuid": "latest"
},
"devDependencies": {
"eslint": "latest",
"jest": "latest"
},
"moduleRoots": [
"src/"
],
"engines": {
"node": ">=7.10.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"coverageReporters": ["json", "json-summary", "text", "text-summary", "lcov", "clover"],
"collectCoverageFrom": [
"src/**/*.js",
"!src/main.js"
]
}
}