-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.04 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
{
"name": "ethereact",
"version": "0.1.0",
"description": "",
"main": "",
"scripts": {
"lint": "eslint src/js tasks",
"dev": "./node_modules/.bin/webpack --watch -d --config=webpack.config.dev.js",
"prod": "./node_modules/.bin/webpack --watch -d --config=webpack.config.prod.js",
"start": "./node_modules/.bin/webpack-dev-server --history-api-fallback --content-base ./public/ --output-public-path /public/",
"geth": "geth --rpc --rpcaddr 'localhost' --rpcport '8545' --rpc --rpccorsdomain 'http://localhost:8080' console"
},
"author": "lutangar",
"license": "",
"dependencies": {
"babel-polyfill": "^6.16.0",
"connect": "^3.5.0",
"express": "^4.14.0",
"json-loader": "^0.5.4",
"material-ui": "^0.16.5",
"node-fetch": "^1.6.3",
"normalizr": "^2.3.0",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-saga": "^0.13.0",
"reselect": "^2.5.4",
"serve-static": "^1.11.1",
"web3": "^0.17.0-beta"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.4.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.24.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"node-sass": "^3.4.2",
"redux-devtools": "^3.0.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
}
}