-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.36 KB
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
{
"name": "@drizzle/react-plugin",
"version": "1.5.0",
"description": "Put some Drizzle on your React components.",
"main": "dist/drizzle-react-plugin.js",
"repository": "https://github.com/trufflesuite/drizzle-suite/tree/master/packages/react-plugin",
"scripts": {
"build:dev": "webpack --config webpack.config.js",
"prepare": "webpack --config webpack.prod.js",
"lint": "eslint src",
"webpack-report": "webpack-bundle-analyzer --log-level debug --port 4201 dist/stats.json"
},
"keywords": [
"ethereum",
"react"
],
"author": {
"name": "Josh Quintal",
"email": "josh@trufflesuite.com",
"url": "http://truffleframework.com/"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"dependencies": {
"debounce": "^1.2.0",
"deep-equal": "^1.0.1"
},
"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/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-redux": "^5.0.7",
"redux": "^4.0.4",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^3.4.1"
}
}