-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 3.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"license": "MIT",
"description": "A React, Relay, GraphQL demo app.",
"homepage": "https://nodkz.github.io/relay-northwind/",
"engines": {
"node": ">=8.0.0",
"npm": ">=3.3"
},
"dependencies": {
"babel-polyfill": "7.0.0-beta.2",
"dotenv": "^4.0.0",
"fastclick": "1.0.6",
"history": "^4.7.2",
"react": "^16.1.1",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.1.1",
"react-loading": "^1.0.2",
"react-relay": "^1.4.1",
"react-relay-network-modern": "^1.2.0",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "7.0.0-beta.2",
"babel-core": "7.0.0-beta.2",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-node": "7.0.0-beta.2",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-import-inspector": "^2.0.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-relay-hot": "^1.0.4",
"babel-preset-env": "2.0.0-beta.2",
"babel-preset-flow": "7.0.0-beta.2",
"babel-preset-react": "7.0.0-beta.2",
"babel-preset-stage-0": "7.0.0-beta.2",
"chalk": "^2.3.0",
"compression-webpack-plugin": "^1.0.0",
"deepmerge": "^1.5.2",
"del": "^3.0.0",
"escope": "3.6.0",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.8.0",
"eslint-config-react-app": "^2.0.1",
"eslint-import-resolver-babel-module": "4.0.0-beta.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-graphql": "^1.4.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"express-http-proxy": "^1.1.0",
"flow-bin": "0.59.0",
"fs-extra": "^4.0.2",
"html-webpack-plugin": "^2.30.1",
"jsonfile": "^4.0.0",
"ncp": "2.0.0",
"nodemon": "^1.12.1",
"open": "^0.0.5",
"prettier": "^1.8.2",
"react-dev-utils": "^4.2.1",
"react-hot-loader": "3.1.3",
"react-transform-catch-errors": "1.0.2",
"redbox-react": "^1.5.0",
"relay-compiler": "^1.4.1",
"source-map-support": "^0.5.0",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4",
"webpack-hot-middleware": "^2.20.0"
},
"scripts": {
"test": "./node_modules/.bin/eslint app",
"build": "BABEL_ENV=scripts NODE_ENV=production ./node_modules/.bin/babel-node ./tools/run build",
"start": "BABEL_ENV=scripts NODE_ENV=development ./node_modules/.bin/babel-node ./tools/run start",
"lint": "./node_modules/.bin/eslint --ext .js ./src",
"relay": "relay-compiler --src ./src --schema ./schema.graphql"
}
}