forked from aeiz/student-api-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "student-api-graphql",
"version": "1.0.0",
"description": "A GraphQL Wrapper for Ellucian's Banner Student REST API",
"repository": {
"type": "git",
"url": "https://github.com/aeiz/student-api-graphql.git"
},
"main": "index.js",
"scripts": {
"start": "nodemon ./index.js --exec babel-node",
"forever": "forever start server.js",
"build": "webpack --config webpack.production.config.js -p"
},
"author": "Michael Gillen <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-inline-import": "^2.0.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.11.0",
"webpack": "^2.6.1"
},
"dependencies": {
"cors": "^2.8.3",
"dataloader": "^1.3.0",
"debug": "^2.6.8",
"express": "^4.15.2",
"express-graphql": "^0.6.6",
"graphql": "^0.10.3",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^7.4.1",
"node-fetch": "^1.6.3",
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}