-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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": "fliptask",
"version": "1.0.2",
"description": "Task Management",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch server --watch .env --exec \"node --inspect server/index.js\"",
"prod": "node server/index.js",
"lint": "./node_modules/eslint-watch/bin/esw --color",
"lint:watch": "npm run lint --watch"
},
"author": "Ashish Kumar",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"express-validator": "^6.4.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.6",
"nodemailer-sendgrid-transport": "^0.2.0",
"npm": "^6.14.5",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-http-bearer": "^1.0.1",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.11",
"umzug": "^2.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-progress": "github:taskworld/eslint-plugin-progress",
"eslint-plugin-react": "^7.20.0",
"eslint-watch": "^6.0.1"
},
"standard": {
"globals": [
"localStorage",
"window"
]
},
"engines": {
"node": "10.x"
}
}