-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
{
"name": "graphql-server-example",
"scripts": {
"test": "TEST=true $(npm bin)/ava server/**/__tests__/**/*.js",
"test-watch": "$(npm bin)/nodemon server/**/__tests__/**/*.js --exec 'npm run test'",
"server": "$(npm bin)/babel-node tools/run graphqlServer",
"build": "$(npm bin)/babel-node tools/run.js build",
"build-watch": "$(npm bin)/babel-node tools/run.js serve",
"update-schema": "$(npm bin)/babel-node tools/run.js updateSchema",
"start": "npm run server && npm run build-watch",
"lint": "$(npm bin)/eslint server client"
},
"metadata": {
"graphql": {
"schema": "./data/schema.json"
}
},
"devDependencies": {
"ava": "^0.4.2",
"babel": "^5.8.29",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "5.3.2",
"babel-relay-plugin": "^0.3.0",
"babel-relay-plugin-loader": "^0.3.1",
"del": "^2.0.2",
"eslint": "^1.7.2",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"gaze": "^0.5.2",
"joi": "^7.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"ncp": "^2.0.0",
"nodemon": "^1.8.1",
"react-hot-loader": "^2.0.0-alpha-2",
"sinon": "^1.17.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"body-parser": "^1.14.1",
"classnames": "^2.2.0",
"express": "^4.13.3",
"express-graphql": "^0.4.0",
"graphql": "^0.4.12",
"graphql-relay": "^0.3.3",
"history": "^1.13.0",
"jwt-decode": "^1.4.0",
"jwt-simple": "^0.3.1",
"lodash": "^3.10.1",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-relay": "^0.4.0",
"react-router": "^1.0.0-rc4",
"react-router-relay": "^0.7.0",
"thinky": "^2.2.0"
}
}