This repository has been archived by the owner on Jun 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
122 lines (122 loc) · 3.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ethereum-react-components",
"version": "1.13.15",
"description": "A components library which is used in multiple projects. Contains frequently used Ethereum components to display and handle addresses, transactions...",
"main": "dist/index.js",
"scripts": {
"test": "jest --config=jest.config.js --coverage",
"prepublish": "yarn run clean && yarn run build",
"clean": "rm -rf ./dist",
"build": "webpack --config webpack.prod.config.js --display-modules",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"lint": "eslint src --ext .jsx --ext .js",
"lint:fix": "eslint --fix src --ext .jsx --ext .js",
"lint:watch": "esw -w src --ext .jsx --ext .js",
"lint:style": "stylelint 'src/components/**/*.{js,jsx}'",
"pretty": "prettier --no-semi --single-quote --write"
},
"peerDependencies": {
"@material-ui/core": "^3.9.2",
"react": ">=16.6.3",
"react-dom": ">=16.6.3"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^3.9.2",
"@storybook/addon-actions": "5.1.0-alpha.17",
"@storybook/addon-info": "5.1.0-alpha.17",
"@storybook/addon-links": "5.1.0-alpha.17",
"@storybook/addon-notes": "5.1.0-alpha.17",
"@storybook/addon-storyshots": "5.1.0-alpha.17",
"@storybook/addons": "5.1.0-alpha.17",
"@storybook/react": "5.1.0-alpha.17",
"@storybook/theming": "5.1.0-alpha.17",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"eslint-watch": "^4.0.2",
"file-loader": "^2.0.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.10.0",
"prettier": "^1.15.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"regenerator-runtime": "^0.13.1",
"standard-version": "^4.4.0",
"stylelint": "^9.9.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.1",
"terser-webpack-plugin": "^1.2.3",
"url-loader": "^1.1.2",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.9",
"@fortawesome/free-solid-svg-icons": "^5.6.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"axios": "^0.18.0",
"bignumber.js": "^8.0.1",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"ethereum-blockies": "git+https://github.com/ethereum/blockies.git",
"ethereumjs-common": "^0.6.0",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.0.0",
"geopattern": "^1.2.3",
"identicon.js": "^2.3.3",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react-minimal-pie-chart": "^3.3.0",
"react-select": "^2.2.0",
"styled-components": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,md}": [
"yarn pretty",
"git add"
],
"src/**/*.{js,jsx}": [
"yarn pretty",
"yarn lint:fix",
"yarn lint:style",
"git add"
]
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/ethereum-react-components.git"
},
"bugs": {
"url": "https://github.com/ethereum/ethereum-react-components/issues"
},
"homepage": "https://github.com/ethereum/ethereum-react-components#readme"
}