-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
93 lines (93 loc) · 3.13 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
88
89
90
91
92
93
{
"name": "NectarCommunity",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ethfinex/community-gateway",
"author": "DeversiFi",
"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",
"build-dao": "cd src && git clone https://github.com/ethfinex/nectar-dao-staking.git && cd nectar-dao-staking && yarn && yarn build"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.4",
"@ledgerhq/hw-app-eth": "4.41.1",
"@ledgerhq/hw-transport-u2f": "4.41.1",
"animated-number-react": "^0.1.1",
"babel-loader": "^8.0.5",
"bignumber.js": "^9.0.0",
"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",
"dotenv": "^6.2.0",
"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",
"lodash": "^4.17.15",
"material-table": "^1.40.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.8.6",
"react-datepicker": "2.8.0",
"react-dom": "^16.2.0",
"react-draggable": "^3.3.0",
"react-ga": "^2.5.0",
"react-loader-spinner": "^3.1.5",
"react-redux": "^5.0.6",
"react-router-dom": "^5.0.0",
"react-router-redux": "^4.0.8",
"react-tooltip": "^3.11.1",
"react-virtualized": "^9.21.1",
"recharts": "^1.8.5",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"sqlite3": "^4.1.0",
"style-loader": "^0.20.1",
"styled-components": "^5.0.1",
"web3": "1.2.4",
"webpack": "^3.10.0",
"write-file-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"babel-eslint": "^8.2.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.6.1",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"truffle": "^4.1.3",
"webpack-dev-server": "^2.11.1"
}
}