-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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": "@blackpanther1881/component-library",
"version": "0.0.23",
"publishConfig": {
"registry": "https://registry.npmjs.org/blackpanther1881"
},
"description": "A React component library built with TailwindCSS and TypeScript.",
"repository": "https://github.com/blackpanther1881/component-library",
"homepage": "https://blackpanther1881.github.io/component-library",
"author": "blackapnther1881",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "8.3.3",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.2",
"gh-pages": "^4.0.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-loader": "^4.1.0",
"react-scripts": "^5.0.1",
"rollup": "^2.67.2",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.0.24",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"webpack": "5",
"yarn-add-no-save": "^1.0.3"
},
"scripts": {
"tailwind": "tailwindcss -o src/build.css --minify",
"rollup": "rollup -c",
"build:lib": "npm run tailwind && npm run rollup && cp src/build.css dist",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"predeploy": "yarn build-storybook",
"deploy:lib": "yarn build:lib && npm publish",
"deploy:storybook": "yarn predeploy && gh-pages -d storybook-static && yarn cleanup-deployment"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"prettier": "^2.8.3",
"react": "^18.1.0"
}
}