forked from trufflesuite/drizzle-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "drizzle",
"version": "1.2.2",
"description": "A reactive data-store for web3 and smart contracts.",
"main": "dist/drizzle.js",
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/drizzle"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack --config webpack.config.js --watch",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"format": "prettier-standard 'src/**/*.js'"
},
"keywords": [
"ethereum",
"redux",
"redux-saga"
],
"author": {
"name": "Josh Quintal",
"email": "josh@trufflesuite.com",
"url": "http://truffleframework.com/docs/drizzle/getting-started"
},
"license": "ISC",
"dependencies": {
"deepmerge": "^2.1.1",
"eth-block-tracker-es5": "^2.3.2",
"is-plain-object": "^2.0.4",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"web3": "^1.0.0-beta.35",
"webpack": "^4.16.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"prettier-standard": "^8.0.1",
"standard": "^11.0.1",
"webpack-cli": "^3.1.0"
}
}