-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 991 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": "nodejs-restapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js -e js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^4.6.3",
"bcryptjs": "^2.4.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-handlebars": "^3.0.1",
"express-validation": "^1.0.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.0",
"kue": "^0.11.6",
"mongoose": "^5.4.15",
"mongoose-paginate": "^5.0.3",
"nodemailer": "^5.1.1",
"nodemailer-express-handlebars": "^3.0.0",
"require-dir": "^1.2.0",
"youch": "^2.0.10"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.10"
}
}