forked from trufflesuite/drizzle-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 902 Bytes
/
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
{
"name": "drizzle",
"version": "0.1.0",
"description": "A reactive data-store for web3 and smart contracts.",
"main": "dist/drizzle.js",
"scripts": {
"build": "webpack --config webpack.config.js"
},
"keywords": [
"ethereum",
"redux",
"redux-saga"
],
"author": {
"name": "Josh Quintal",
"email": "[email protected]",
"url": "http://truffleframework.com/"
},
"license": "ISC",
"dependencies": {
"redux": "^3.6.0",
"redux-saga": "^0.15.3",
"redux-thunk": "^2.2.0",
"truffle-contract": "^2.0.5",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"webpack": "^3.5.3"
}
}