forked from trufflesuite/drizzle-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "drizzle",
"version": "1.3.3",
"description": "A reactive data-store for web3 and smart contracts.",
"types": "./index.d.ts",
"main": "./dist/drizzle.js",
"react-native": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/drizzle"
},
"scripts": {
"build": "webpack --config webpack/release.config.js",
"build:pure": "webpack --config webpack/pure.config.js",
"dev": "webpack --config webpack/release.config.js --watch",
"format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"test": "jest --notify --silent"
},
"keywords": [
"ethereum",
"redux",
"redux-saga"
],
"author": {
"name": "Josh Quintal",
"email": "[email protected]",
"url": "http://truffleframework.com/docs/drizzle/getting-started"
},
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.4.4",
"deepmerge": "^3.2.0",
"eth-block-tracker-es5": "^2.3.2",
"is-plain-object": "^2.0.4",
"redux": "^4.0.1",
"redux-saga": "^0.16.0",
"web3": "1.0.0-beta.35"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-jest": "^22.5.1",
"ganache-core": "^2.5.5",
"jest": "^24.7.1",
"prettier-standard": "^9.1.1",
"standard": "^12.0.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-merge": "^4.2.1",
"redux-mock-store": "^1.5.3"
}
}