-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "qaid",
"author": {
"email": "[email protected]",
"name": "Srinivas Gowda",
"url": "https://www.solancer.com"
},
"version": "1.0.2",
"description": "",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production pm2 start server.js",
"mocha": "nyc mocha --timeout=5000 --exit",
"test": "npm run mocha",
"dev": "cross-env NODE_ENV=development nodemon server.js --insepect",
"format": "prettier --write --config .prettierrc.json \"**/*.js\"",
"lint": "eslint --fix --config .eslintrc.json \"**/*.js\"",
"remark": "remark . -o"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run remark"
}
},
"dependencies": {
"aws-sdk": "^2.814.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"composable-middleware": "^0.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "latest",
"date-fns": "^2.11.1",
"dotenv-safe": "^8.2.0",
"ejs": "^3.0.2",
"expeditious-engine-redis": "^0.1.2",
"express": "^4.17.1",
"express-expeditious": "^5.1.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.4.0",
"helmet": "^3.22.0",
"i18n": "^0.8.6",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"mongoose": "^5.9.6",
"mongoose-aggregate-paginate-v2": "^1.0.4",
"mongoose-paginate-v2": "^1.3.9",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.4.6",
"nodemailer-mailgun-transport": "^2.1.5",
"passport": "^0.4.1",
"passport-facebook-token": "^3.3.0",
"passport-google-id-token": "^0.4.7",
"passport-jwt": "^4.0.0",
"raven": "^2.6.4",
"remark-cli": "^7.0.1",
"request-ip": "^2.1.3",
"trim-request": "^1.0.6",
"twilio": "^3.42.2",
"uuid": "^7.0.2",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.20",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"prettier-eslint": "^9.0.1"
}
}