-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
32 lines (32 loc) · 987 Bytes
/
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
{
"name": "passport-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-amazon": "^1.0.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-instagram": "^1.0.0",
"passport-spotify": "^1.0.1",
"passport-twitch.js": "0.0.7"
},
"scripts": {
"start": "run-p start:** server",
"start:app": "cd client && npm run start",
"production": "run-p production:** server",
"production:build": "cd client && npm run build",
"server": "nodemon server/index.js",
"dev": "pm2 startOrReload ecosystem.json --env development",
"prod": "pm2 startOrReload prod-ecosystem.json --env production"
}
}