-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 911 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
40
41
42
{
"name": "swagger-members-api",
"version": "1.0.0",
"description": "Minimal Node.js/MongoDB API fronted with SwaggerUI",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"format": "prettier --write ./**/*.{js,jsx,json}",
"test": "NODE_ENV=test mocha"
},
"keywords": [
"swagger",
"node",
"mongodb",
"mocha"
],
"author": "Colby Thomas",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"swagger-ui-express": "^4.0.2"
},
"devDependencies": {
"expect.js": "^0.3.1",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}