-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "mevnwithvuetify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"seed": "node seeder/index.js",
"lint": "eslint --fix --config .eslintrc.json \"**/*.js\"",
"format": "prettier --write --config .prettierrc.json \"**/*.js\"",
"fix": "eslint . --fix"
},
"author": "VictorJJF",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.25.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"helmet": "^4.6.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mailgun-nodemailer-transport": "^1.5.1",
"mongodb": "^4.1.3",
"mongoose": "^6.0.12",
"mongoose-aggregate-paginate-v2": "^1.0.42",
"mongoose-beautiful-unique-validation": "^7.1.1",
"mongoose-paginate-v2": "^1.4.2",
"morgan": "^1.10.0",
"nodemailer": "^6.7.0",
"nodemailer-mailgun-transport": "^2.1.3",
"npm": "^8.1.2",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"request-ip": "^2.1.3",
"trim-request": "^1.0.6",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"mongo-seeding": "^3.7.0",
"prettier": "^2.4.1"
},
"eslintConfig": {
"extends": "airbnb"
}
}