forked from arunoda/coursebook-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "coursebook-server",
"version": "0.0.0",
"private": true,
"description": "Backend server for coursebook",
"main": "server.js",
"scripts": {
"lint": "standard",
"test": "npm run lint",
"dev": "sh scripts/devrun.sh",
"deploy": "sh scripts/deploy.sh",
"start": "node server.js",
"samples": "coursebook-publish http://localhost:3003 admin scripts/samples",
"react": "coursebook-publish https://okgrow-coursebook-server.now.sh admin scripts/react"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arunoda/coursebook-server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/arunoda/coursebook-server/issues"
},
"homepage": "https://github.com/arunoda/coursebook-server#readme",
"engines": {
"node": "6.x.x"
},
"dependencies": {
"connect-mongodb-session": "^1.3.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-session": "^1.14.2",
"github": "^8.1.1",
"graphql": "^0.8.2",
"mongodb": "^2.2.21",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"uuid": "^3.0.1"
},
"devDependencies": {
"node-fetch": "^1.6.3",
"nodemon": "^1.11.0",
"standard": "^8.6.0",
"coursebook-publish": "^1.0.0"
}
}