-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 832 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 832 Bytes
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
{
"name": "github-lms",
"version": "1.0.0",
"description": "",
"main": "api.js",
"engines": {
"node": "11.0.0",
"npm": "6.4.1"
},
"scripts": {
"start": "node api.js",
"dev": "nodemon api.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"heroku-config": "heroku config:set $(cat .env.production | sed '/^$/d; /#[[:print:]]*$/d')"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"highlight.js": "^9.14.2",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"pg": "^7.7.1",
"query-string": "^6.2.0",
"request": "^2.88.0",
"sequelize": "^4.41.2"
},
"devDependencies": {
"nodemon": "^1.18.8"
}
}