-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
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
{
"name": "blockscope-ui",
"version": "0.0.1",
"description": "Basic UI (react) components used by the Blockscope team.",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"build": "rollup -c"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add",
"eslint",
"stylelint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/reftoken/blockscope-ui.git"
},
"keywords": [
"react",
"react-component",
"ui"
],
"author": "BlockScope Team",
"bugs": {
"url": "https://github.com/reftoken/blockscope-ui/issues"
},
"homepage": "https://github.com/reftoken/blockscope-ui#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.4",
"@storybook/addon-options": "^4.0.4",
"@storybook/react": "^4.0.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.8.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.4",
"prettier": "^1.15.2",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"stylelint": "^9.8.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.0"
},
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"material-ui": "^0.20.2",
"material-ui-flat-pagination": "^3.1.0",
"polished": "^2.3.0",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"redux-form": "^7.4.2",
"redux-form-material-ui": "^5.0.0-beta.3",
"styled-components": "^4.0.3"
}
}