-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "eq-extract-questions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start_service": "node server.js",
"start_dev": "nodemon server.js",
"debug": "nodemon --inspect server.js",
"lint": "eslint .",
"test": "./scripts/test.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.1",
"jest": "^25.4.0",
"json2csv": "^5.0.0",
"lodash": "^4.17.15",
"lodash.difference": "^4.5.0",
"nodemon": "^2.0.3",
"nunjucks": "^3.2.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.js",
"!config/**/*",
"!coverage/**/*",
"!tests/**/*",
"!**/tests/**/*",
"!scripts/*",
"!middleware/index.js",
"!index.js"
],
"watchPathIgnorePatterns": [
"data/"
]
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "2500",
"ext": "js,json,html"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}