-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·101 lines (101 loc) · 3.87 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
{
"name": "eth-plot",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"clean": "node_modules/.bin/rimraf bin && node_modules/.bin/rimraf build && node_modules/.bin/rimraf bin dist && node_modules/.bin/rimraf gen-src && node_modules/.bin/rimraf lib",
"build:webpack": "cross-env NODE_ENV=production webpack --mode production --progress --profile --colors",
"build": "npm run clean && npm run gen && tsc && npm run lint && npm run test && npm run build:webpack --progress --profile --colors",
"dev": "NODE_ENV=development npm start",
"start": "node_modules/.bin/webpack-dev-server --port 3000 --hot --inline --mode development -d",
"start:admin": "node_modules/.bin/webpack-dev-server --port 4000 --hot --inline --mode development -d --config ./webpack.config.admin.js",
"lint": "npm run lint:typescript && npm run lint:solidity",
"lint:typescript": "./node_modules/.bin/tslint --force --project tsconfig.json",
"lint:solidity": "./node_modules/.bin/solium -d ./contracts",
"gen": "node_modules/.bin/truffle compile && ./node_modules/.bin/typechain --force --outDir ./gen-src ./build/contracts/*.json",
"test": "node_modules/.bin/truffle test",
"start:ganache": "node_modules/.bin/ganache-cli -i local_test -d",
"deploy:truffle": "node_modules/.bin/truffle migrate --network ganache --reset"
},
"devDependencies": {
"@spacedust/typechain": "^0.3.0",
"@types/chai": "^4.1.3",
"@types/d3-scale-chromatic": "^1.2.0",
"@types/jquery": "^3.3.1",
"@types/js-cookie": "^2.1.0",
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"@types/prop-types": "^15.5.2",
"@types/query-string": "^5.1.0",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^5.0.20",
"@types/react-router-dom": "^4.2.6",
"@types/redux": "^3.6.0",
"@types/redux-devtools": "^3.0.43",
"@types/redux-devtools-dock-monitor": "^1.1.32",
"@types/redux-devtools-log-monitor": "^1.0.33",
"@types/redux-logger": "^3.0.5",
"@types/redux-thunk": "^2.1.0",
"@types/sinon": "^4.3.1",
"@types/webpack-env": "^1.13.5",
"ajv": "^6.4.0",
"autoprefixer": "^6.3.1",
"awesome-typescript-loader": "^5.0.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^1.0.6",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "0.0.9",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"ganache-cli": "^6.1.0",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^3.0.0",
"json-loader": "^0.5.7",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"redux-logger": "^3.0.6",
"rimraf": "^2.4.3",
"solium": "^1.1.7",
"source-map-loader": "^0.2.3",
"truffle": "^4.1.8",
"truffle-core": "^4.1.8",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"@material-ui/icons": "^1.0.0-beta.43",
"bignumber.js": "^5.0.0",
"buffer": "^5.1.0",
"d3-scale-chromatic": "^1.2.0",
"decimal.js": "^9.0.1",
"es6-promise-pool": "^2.5.0",
"hexy": "^0.2.10",
"ipfs-api": "^20.0.1",
"js-cookie": "^2.2.0",
"localforage": "^1.7.1",
"material-ui": "^1.0.0-beta.41",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.22.1",
"openzeppelin-solidity": "^1.9.0",
"prop-types": "^15.6.0",
"query-string": "^6.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^4.1.1",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^1.0.3",
"sinon": "^5.0.6",
"typeface-roboto": "0.0.50",
"typescript": "^2.8.1",
"web3": "^0.20.6"
}
}