-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1001 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
35
36
37
38
39
{
"name": "coffee-time",
"version": "1.0.0",
"description": "",
"main": "bin/www",
"scripts": {
"test": "DB_NAME=coffee-time-test NODE_ENV=test LOG_LEVEL=fatal mocha --recursive",
"dev": "nodemon bin/www | bunyan",
"lint": "npx eslint bin/www ./config/**/*.js ./models/**/*.js ./routes/**/*.js ./test/**/*.js ./util/**/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"convict": "^6.2.3",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.18.1",
"mongoose": "^6.3.6",
"mongoose-unique-validator": "^3.1.0",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
},
"nodemonConfig": {
"watch": [
"./bin/www",
"./**/*"
]
}
}