-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "foodora",
"version": "1.0.0",
"description": "foodora gives you the top recipes",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint \"**/*.js\"",
"lint-fix": "./node_modules/.bin/eslint --fix \"**/*.js\"",
"test": "npm run integration-test && npm run unit-test",
"integration-test": "cross-env NODE_ENV=testing nyc --reporter=html --reporter=text ./node_modules/mocha/bin/mocha \"./test/integration\" --recursive --exit",
"unit-test": "cross-env NODE_ENV=testing nyc --reporter=html --reporter=text jest --detectOpenHandles --forceExit ",
"coverage": "nyc report coveralls"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.6.0",
"bcrypt": "2.x.x",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.11",
"mongodb": "^3.0.4",
"nyc": "^13.1.0"
},
"devDependencies": {
"artillery": "^1.6.0-25",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"jest-environment-node": "^23.4.0",
"mocha": "^5.0.0",
"mongodb-memory-server": "^2.6.1",
"rewire": "^4.0.1"
}
}