-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "reviewsystem",
"version": "1.0.0",
"description": "A fast, simple & powerful RESTful API based Review System",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "jest -i --forceExit",
"test:watch": "jest -i --watchAll --verbose",
"coverage": "jest -i --coverage --forceExit",
"coverage:watch": "jest -i --watchAll --verbose --coverage",
"coveralls": "jest -i --coverage --forceExit && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/rejuan/ReviewSystem.git"
},
"author": "A M S Rejuan",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"joi": "^14.3.1",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"mongoose": "^5.4.2",
"multer": "^1.4.1",
"nodemailer": "^5.0.0",
"winston": "^3.1.0",
"winston-mongodb": "^4.0.3"
},
"devDependencies": {
"coveralls": "^3.0.3",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0"
}
}