-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
63
64
65
66
67
68
69
70
71
72
{
"name": "socio-konnect",
"version": "1.0.0",
"private": true,
"scripts": {
"prestart": "run-s lint-server lint-client sw",
"start2": "node ./bin/www",
"debug": "set DEBUG=SocioKonnect:* & npm run start2",
"start": "run-p lint-w debug",
"start-w": "nodemon --exec run-s prestart debug",
"start-w-lite": "nodemon --exec run-s debug",
"localTunnel": "lt --port 1998 --subdomain yash",
"sw": "run-s sw-create sw-move",
"sw-create": "sw-precache --config swConfig.js",
"sw-move": "node ./utils/swFileMover.js",
"lt": "run-p start localTunnel",
"lint-server": "esw --color",
"lint-w": "esw --color --watch",
"public": "cd public",
"out": "cd..",
"lint-client": "run-s public lint-server out"
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.3",
"cookie-parser": "~1.4.3",
"csurf": "^1.9.0",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"fb": "^2.0.0",
"hbs": "~4.0.2",
"helmet": "^3.16.0",
"http-errors": "^1.7.2",
"intro.js": "^2.9.3",
"jsonwebtoken": "^8.4.0",
"limiter": "^1.1.4",
"materialize-css": "^1.0.0",
"mongoose": "^5.4.4",
"morgan": "~1.9.0",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-linkedin-oauth2": "^1.5.0",
"passport-local": "^1.0.0",
"passport-pinterest": "^1.0.0",
"passport-twitter": "^1.0.4",
"serve-favicon": "^2.5.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-watch": "^4.0.2",
"localtunnel": "^1.9.1",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"sw-precache": "^5.2.1"
},
"engines": {
"node": "10.12.0",
"npm": "6.5.0"
}
}