-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "fast-food",
"version": "1.0.0",
"description": "auth with mongodb and mongoose",
"main": "server.js",
"scripts": {
"start": "nodemon server.js --exec babel-node --presets babel-preset-env",
"test": "NODE_ENV=test nyc mocha tests/ --require babel-register --require babel-polyfill --timeout 8000 --exit"
},
"keywords": [
"node",
"mongoose",
"mongodb"
],
"author": "Banobe Pascal",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"compression": "^1.7.4",
"config": "^3.2.2",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"joi": "^14.3.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"make-runnable": "^1.3.6",
"mongoose": "^5.6.4",
"morgan": "^1.9.1",
"uuidv4": "^5.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/node": "^7.2.2",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset": "^1.0.15",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-mongoose": "^2.3.0"
}
}