forked from nec-community/community-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.25 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
{
"name": "NectarCommunity",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ethfinex/community-gateway",
"author": "Nikola Vukovic <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --history-api-fallback --compress --config ./build/webpack-dev.config.js --host=0.0.0.0",
"prod": "webpack --config ./build/webpack-prod.config.js",
"prod-serve": "webpack-dev-server --https --history-api-fallback --compress --config ./build/webpack-prod.config.js"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"buffer": "^5.1.0",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"crypto-browserify": "^3.12.0",
"css-loader": "^0.28.9",
"ed25519-supercop": "^1.0.2",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^5.1.5",
"ethereumjs-wallet": "0.6.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^1.1.6",
"grenache-nodejs-http": "^0.7.3",
"grenache-nodejs-link": "^0.7.7",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^4.0.0",
"ledgerco": "^1.2.1",
"node-sass": "^4.7.2",
"openzeppelin-solidity": "1.12.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-ga": "^2.5.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"sqlite3": "^3.1.13",
"style-loader": "^0.20.1",
"web3": "1.0.0-beta.31",
"webpack": "^3.10.0",
"write-file-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"truffle": "^4.1.3",
"webpack-dev-server": "^2.11.1"
}
}