-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 864 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
{
"name": "super-foods",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "export NODE_ENV=test || SET NODE_ENV=test && mocha **/*.test.js",
"populate": "node ./util/populatedb mongodb://localhost:27017/superfoods"
},
"keywords": [],
"author": "Jermaine Brown",
"license": "ISC",
"dependencies": {
"async": "^3.1.0",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"mongodb": "^3.2.4",
"mongoose": "^5.5.6"
},
"devDependencies": {
"documentation": "^11.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"expect": "^24.8.0",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"supertest": "^4.0.2"
}
}