forked from yury-dymov/json-api-react-redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "json-api-react-redux-example",
"version": "1.0.0",
"description": "React Application With Redux And JSON API",
"scripts": {
"build": "better-npm-run build",
"webpack-dev-server": "better-npm-run webpack-dev-server",
"lint": "eslint src --ext '.js,.jsx'"
},
"betterScripts": {
"build": {
"command": "webpack -p",
"env": {
"NODE_ENV": "production"
}
},
"webpack-dev-server": {
"command": "webpack-dev-server --debug --hot --devtool eval-source-map --output-pathinfo --watch --colors --inline --content-base dist --port 8050 --host 0.0.0.0",
"env": {
"BABEL_ENV": "dev"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yury-dymov/json-api-react-redux-example.git"
},
"author": "Yury Dymov",
"license": "MIT",
"bugs": {
"url": "https://github.com/yury-dymov/json-api-react-redux-example/issues"
},
"homepage": "https://github.com/yury-dymov/json-api-react-redux-example#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"better-npm-run": "0.0.13",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"bluebird": "^3.4.6",
"isomorphic-fetch": "^2.2.1",
"json-api-normalizer": "0.1.0",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-bootstrap-button-loader": "^1.0.7",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-object": "0.0.2",
"redux-thunk": "^2.1.0"
}
}