forked from daostack/alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.1 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
{
"name": "alchemy-client",
"version": "0.1.0",
"description": "React based client app for interacting with DAO Stack",
"author": "Tibet Sprague",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/daostack/alchemy.git"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.config.js",
"ganache": "npm explore @daostack/arc.js -- npm start test.ganache.run",
"ganacheDb": "npm explore @daostack/arc.js -- npm start test.ganacheDb.run",
"ganacheDb-clean": "npm explore @daostack/arc.js -- npm start test.ganacheDb.clean",
"ganacheDb-save": "npm explore @daostack/arc.js -- npm start test.ganacheDb.zip",
"ganacheDb-restore": "npm explore @daostack/arc.js -- npm start test.ganacheDb.restoreFromZip",
"migrate-ganache": "npm explore @daostack/arc.js -- npm start migrateContracts",
"lint": "eslint src",
"start": "webpack-dev-server --open='google chrome' --config webpack.dev.config.js",
"start-ganache": "ETH_ENV=ganache yarn start",
"start-kovan": "ETH_ENV=kovan yarn start"
},
"dependencies": {
"@daostack/arc.js": "0.0.0-alpha.24",
"axios": "^0.17.1",
"bignumber.js": "^5.0.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"es6-promisify": "^5.0.0",
"ethereum-blockies-png": "https://github.com/Terran-Collective/ethereum-blockies-png",
"ethers": "^2.1.2",
"immutability-helper": "^2.4.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"normalizr": "^3.2.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "5.0.0-alpha.7",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"style-loader": "^0.18.2",
"truffle-contract": "^3.0.1",
"web3": "^0.20.4",
"webpack": "^3.5.5",
"zeppelin-solidity": "^1.2.0"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/es6-promisify": "^5.0.0",
"@types/lodash": "^4.14.74",
"@types/node": "^8.0.26",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/react-hot-loader": "^3.0.4",
"@types/react-redux": "^5.0.8",
"@types/react-router-dom": "^4.0.7",
"@types/react-router-redux": "^5.0.8",
"@types/react-transition-group": "^2.0.7",
"@types/redux-logger": "^3.0.3",
"@types/redux-promise-middleware": "^0.0.8",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.2.3",
"extract-text-webpack-plugin": "^3.0.0",
"ganache-cli": "^6.0.3",
"node-sass": "^4.5.3",
"react-hot-loader": "^3.0.0-beta.7",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.0",
"source-map-loader": "^0.2.1",
"typescript": "^2.5.2",
"typings-for-css-modules-loader": "^1.5.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"web3-typescript-typings": "^0.6.0",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
}
}