forked from KyberNetwork/KyberSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (121 loc) · 5.14 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "kyber-wallet",
"version": "0.3.0",
"description": "Ethereum wallet developed by KyberNetwork team. It supports instant exchange between wide range of tokens.",
"main": "webpack.config.js",
"dependencies": {
"abi-decoder": "^1.0.9",
"axios": "^0.17.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^5.0.0",
"bowser": "^1.9.1",
"compression-webpack-plugin": "^1.1.3",
"cors": "^2.8.4",
"enzyme-adapter-react-16": "^1.1.1",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.1",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "^0.6.0",
"hdkey": "^0.7.1",
"history": "^4.7.2",
"jdenticon": "^1.7.2",
"localforage": "^1.5.5",
"lodash": "^4.17.4",
"platform": "^1.3.4",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.3",
"react-localize-redux": "^2.13.7",
"react-modal": "^3.1.10",
"react-redux": "^5.0.5",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-slick": "^0.16.0",
"react-test-renderer": "^16.2.0",
"react-tooltip": "^3.4.0",
"react-transition-group": "^1.2.1",
"redux": "^3.7.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.3.0",
"redux-persist": "^5.2.2",
"redux-saga": "^0.16.0",
"scryptsy": "^2.0.0",
"simple-node-logger": "^0.93.33",
"sqlite3": "^3.1.13",
"underscore": "^1.8.3",
"web3": "^1.0.0-beta.18",
"web3-providers-ws": "^1.0.0-beta.28",
"webpack-dev-server": "^2.9.7",
"websocket": "^1.0.25"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"circular-json": "^0.5.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"jest": "^22.0.4",
"jsdom": "^11.5.1",
"json-stringify-safe": "^5.0.1",
"lodash-webpack-plugin": "^0.11.4",
"mocha": "^4.0.1",
"node-sass": "^4.7.2",
"react-addons-test-utils": "^15.6.2",
"redux-saga-test-plan": "^3.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"scripts": {
"build-kovan": "NODE_ENV=production webpack --env.chain=kovan --env.build=true",
"build-mainnet": "NODE_ENV=production webpack --env.chain=mainnet --env.build=true",
"build-internal-mainnet": "NODE_ENV=production webpack --env.chain=internal_mainnet --env.build=true",
"build-ropsten": "NODE_ENV=production webpack --env.chain=ropsten --env.build=true",
"build-staging": "NODE_ENV=production webpack --env.chain=staging --env.build=true",
"build-production": "NODE_ENV=production webpack --env.chain=production --env.build=true",
"build-all": "npm run build-staging && npm run build-production && npm run build-internal-mainnet",
"mainnet": "webpack-dev-server --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=mainnet",
"internal_mainnet": "webpack-dev-server --https --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=internal_mainnet",
"staging": "webpack-dev-server --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=staging",
"production": "webpack-dev-server --https --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=production",
"kovan": "webpack-dev-server --https --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=kovan",
"ropsten": "webpack-dev-server --https --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=ropsten --env.logger=true",
"dev": "webpack-dev-server --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=ropsten --env.logger=true",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"server": "node server/server_http.js",
"kovan-https": "webpack-dev-server --https --content-base src --inline --hot --history-api-fallback --host 0.0.0.0 --port 3000 --env.chain=kovan --env.logger=true"
},
"jest": {
"globals": {
"window": null
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/testing/container/fileMock.js"
}
},
"author": "Victor Tran",
"license": "MIT"
}