-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "book-api",
"version": "0.0.1",
"description": "A light API for book and article management",
"main": "index.js",
"scripts": {
"test": "mocha -- tests/*.js",
"start": "nodemon index.js"
},
"engines": {
"node": "8.12.0"
},
"author": "Chike Ozulumba",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"email-validator": "^2.0.4",
"express": "^4.16.3",
"g": "^2.0.1",
"joi": "^13.6.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.2.15",
"morgan": "^1.9.1",
"nodemon": "^1.18.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"dotenv": "^6.0.0",
"mocha": "^5.2.0",
"superagent": "^4.0.0-beta.5",
"supertest": "^3.3.0"
}
}