This repository has been archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "drizzle-react-components",
"version": "1.4.0",
"description": "Put some Drizzle on your React components.",
"main": "dist/drizzle-react-components.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"publish": "webpack --config webpack.prod.js",
"lint": "eslint src"
},
"keywords": [
"ethereum",
"react"
],
"author": {
"name": "Josh Quintal",
"email": "[email protected]",
"url": "http://truffleframework.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/drizzle-react-components"
},
"license": "ISC",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"drizzle": "^1.4.0",
"drizzle-react": "^1.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.0",
"prettier": "^1.18.0",
"react-redux": "^5.1.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}