-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.39 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
{
"name": "react-library-starter",
"version": "1.0.0",
"description": "A bundler for your React projects, powered by Rollup.",
"author": "rhaicode",
"license": "MIT",
"repository": "rhaicode/react-library-starter",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production && rm -rf dist && rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-url": "^6.0.0",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/addons": "^6.1.10",
"@storybook/react": "^6.1.10",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss": "^8.2.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-modules": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.23.0",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"tailwindcss": ">=2.0.1"
},
"dependencies": {
"@use-it/event-listener": "^0.1.6",
"casual-browserify": "^1.5.19-2",
"clsx": "^1.1.1",
"react-uuid": "^1.0.2",
"styled-components": "^5.2.1",
"tailwindcss": "^2.0.1"
}
}