-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.8 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
{
"name": "themebook",
"version": "0.2.0",
"description": "Responsive and accessible React UI components for starters",
"private": false,
"scripts": {
"lint": "eslint ./",
"storybook": "start-storybook -p 6006",
"storybook-build": "build-storybook -c .storybook -o storybook",
"transpile": "babel src/components --extensions '.js' --out-dir packages --ignore 'src/**/*.stories.jsx','**/*.test.js' --copy-files --no-copy-ignored",
"prepublishOnly": "rm -rf packages && yarn build:components",
"build:components": "rollup -c && node ./src/utils/generatePublishFiles.js"
},
"author": "Eesh Tyagi <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "^2.10.7",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-svg": "^2.0.0",
"styled-components": "5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-a11y": "5.3.18",
"@storybook/addon-actions": "5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-links": "5.3.18",
"@storybook/addon-viewport": "5.3.18",
"@storybook/addons": "^5.3.19",
"@storybook/react": "5.3.18",
"@storybook/theming": "^5.3.19",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-docgen": "^4.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": ">=4",
"lint-staged": ">=10.2.6",
"path": "^0.12.7",
"prettier": "^2.0.2",
"prettierrc": "^0.0.0-5",
"prop-types": "^15.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"react",
"ui",
"design-system",
"react-components",
"uikit",
"accessible",
"components",
"styled-components",
"library"
],
"repository": "https://github.com/eeshdarthvader/themebook",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"peerDependencies": {
"react": "16.11.0",
"react-dom": "16.11.0",
"styled-components": "^4.4.1"
},
"files": [
"Button.js",
"Summary.js",
"packages/**/*",
"theme.js"
]
}