-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "rgrjs",
"version": "1.0.0",
"scripts": {
"oldStart": "babel-node --presets react,es2015,stage-0 server.js",
"start": "babel-node ./src/graphql",
"dev": "nodemon --exec 'yarn start'",
"eslint": "./node_modules/.bin/eslint",
"update-schema": "babel-node ./scripts/updateSchema.js"
},
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel": "~6.3.26",
"babel-cli": "~6.3.17",
"babel-core": "~6.3.26",
"babel-loader": "~6.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"babel-relay-plugin": "~0.11.0",
"events": "~1.1.0",
"express": "~4.13.3",
"express-graphql": "~0.4.5",
"graphql": "~0.4.14",
"graphql-relay": "0.3.6",
"jquery": "~3.0.0",
"kerberos": "0.0.17",
"lodash": "~3.10.1",
"moment": "~2.18.1",
"mongodb": "~2.1.2",
"mongoose": "^4.13.5",
"prop-types": "~15.5.10",
"react": "~0.14.3",
"react-dom": "~0.14.3",
"react-relay": "0.10",
"relay": "~0.8.0-1",
"webpack": "~1.12.9"
},
"devDependencies": {
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1"
}
}