-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "ejs-challenge",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "16.0.0"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js -e js,ejs",
"eslint-prettier-check": "eslint-config-prettier ./App.js",
"lint-check": "eslint .",
"lint": "eslint --fix .",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-eslint": "^10.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"darkmode-js": "^1.5.7",
"dotenv": "^16.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"googleapis": "^96.0.0",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^6.0.13",
"multer": "^1.4.4",
"netmask": "^2.0.2",
"node-cron": "^3.0.0",
"node-fetch": "^3.1.0",
"nodemailer": "^6.7.1",
"nodemailer-mailgun-transport": "^2.1.3",
"pac-resolver": "^5.0.0"
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run lint-check"
]
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.4.1"
}
}