-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "@corllete/material-styled",
"version": "0.1.2",
"description": "Styled Components implementation of Material Design",
"main": "lib/index.js",
"scripts": {
"test": "yarn lint",
"clear": "rm -rf lib",
"clear:dev": "rm -rf dev",
"build": "yarn clear:dev && babel src --watch --out-dir dev",
"build:prod": "yarn clear && cross-env NODE_ENV=production babel src --out-dir lib",
"lint": "eslint src/**",
"prepush": "yarn lint",
"contributor": "bash ./scripts/update-authors.sh",
"dev": "start-storybook -p 8081 --ci",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corllete/material-styled.git"
},
"license": "MIT",
"homepage": "https://github.com/corllete/material-styled",
"dependencies": {
"classnames": "^2.2.5",
"color": "^2.0.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addon-links": "^5.1.11",
"@storybook/addon-storysource": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"babel-eslint": "^8.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^5.1.3",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"prop-types": "^15.6.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"storybook-readme": "^5.0.8",
"styled-components": "^4.3.2"
},
"peerDependencies": {
"prop-types": ">= 15",
"react": ">= 16.8",
"react-dom": ">= 16.8",
"styled-components": ">= 4"
}
}