-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hw5",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config index.js",
"history": "node -r dotenv/config ./extra_task/articlesHistory.js",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standart": "^0.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.8",
"nodemon": "^1.19.3"
},
"dependencies": {
"@google-cloud/storage": "^4.1.0",
"@sendgrid/mail": "^6.4.0",
"bcrypt": "^3.0.6",
"connect-flash": "^0.1.1",
"connect-redis": "^4.0.3",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.0.0",
"express-session": "^1.17.0",
"express-validator": "^6.2.0",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"mysql2": "^1.7.0",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport.socketio": "^3.7.0",
"rate-limit-redis": "^1.6.0",
"rate-limiter-flexible": "^1.1.6",
"sequelize": "^5.19.5",
"sequelize-cli": "^5.5.1",
"sharp": "^0.23.2",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.2.0",
"stripe": "^7.13.0",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}