-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
45
46
47
48
49
50
51
52
{
"name": "mean-auth",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest --watchAll --verbose --coverage",
"lint": "eslint --ignore-path .gitignore src",
"lint:fix": "eslint --ignore-path .gitignore src --fix"
},
"dependencies": {
"@google/maps": "^0.4.6",
"apidocs": "^2017.3.9",
"app-root-path": "^2.2.1",
"aws-sdk": "^2.1.6",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.15.0",
"config": "^2.0.1",
"cookie-parser": "^1.4.1",
"cors": "^2.8.4",
"debug": "^2.2.0",
"ejs": "2.x",
"express": "^4.13.4",
"express-async-errors": "^3.1.1",
"express-session": "^1.13.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.22.0",
"mongoose": "^5.4.14",
"mongoose-paginate": "^5.0.3",
"mongoose-sequence": "^4.0.0",
"morgan": "^1.9.1",
"nodemailer": "^4.4.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"pdfmake": "^0.1.36",
"winston": "^3.2.1",
"xmlhttprequest": "^1.8.0"
},
"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",
"jest": "^23.6.0",
"nodemon": "^1.19.1",
"supertest": "^3.3.0"
}
}