-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "rando",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@octokit/rest": "^16.25.0",
"@octokit/webhooks": "^6.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"cookie-session": "^1.3.3",
"eventsource": "^1.0.7",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"express-partials": "^0.3.0",
"express-session": "^1.15.6",
"graphql": "^14.5.8",
"http-proxy-middleware": "^0.19.1",
"jsonwebtoken": "^8.5.1",
"materialize-css": "^1.0.0",
"mongoose": "^5.6.9",
"parse-diff": "^0.6.0",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"proxy": "^0.2.4",
"react-devtools": "^3.6.3",
"superagent": "^5.0.2",
"util": "^0.11.1"
},
"scripts": {
"start": "node index.js",
"dev": "concurrently \"nodemon index.js\" \"npm run start --prefix client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"devDependencies": {
"nodemon": "^1.19.3",
"prettier": "^1.18.2"
}
}