-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
53
{
"name": "push-notifications-server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon -r dotenv/config app.js",
"start": "node -r dotenv/config app.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"elastic-apm-node": "^3.26.0",
"express": "^4.17.2",
"express-validator": "^6.6.1",
"helmet": "^4.6.0",
"i18n": "^0.13.4",
"jsonwebtoken": "^8.5.1",
"mkdirp": "^0.5.5",
"mongodb": "^3.7.3",
"mongoose": "^5.13.14",
"multer": "^1.4.4",
"node-cron": "^2.0.3",
"nodemailer": "^6.7.2",
"terser": "^5.10.0",
"web-push": "^3.4.5",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"engines": {
"node": "16.x"
}
}