-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.33 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
{
"name": "project",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./app.js",
"scripts": {
"start": "cross-env NODE_ENV = development nodemon index.js",
"dev": "nodemon ./app.js",
"lint": "eslint ."
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"express-mongo-sanitize": "^2.1.0",
"http-errors": "~1.6.3",
"http-status": "^1.5.0",
"jade": "^0.31.2",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"loadsh": "^0.0.4",
"moment": "^2.29.1",
"mongodb": "^4.2.2",
"mongoose": "^6.1.3",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^6.1.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.3.3",
"xss": "^1.0.10"
},
"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-jest": "^25.3.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}