-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
{
"name": "@colorful-team-org/colorful-component-lib",
"version": "0.1.29",
"license": "unlicensed",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"./lib/**/*"
],
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/blocks": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@types/color": "^3.0.3",
"@types/react": "^18.2.45",
"autoprefixer": "^10.4.16",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"postcss": "^8.4.31",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.3",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"rollup-watch": "^4.3.1",
"storybook": "^7.6.4",
"storybook-css-modules": "^1.0.8",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.2"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"clsx": "^1.2.1",
"color": "^4.2.3"
},
"peerDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2"
},
"scripts": {
"prepare": "npx tsc",
"build": "rollup -c --bundleConfigAsCjs",
"build:prod": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
"watch": "rollup -c -w --bundleConfigAsCjs",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"build:tailwind": "tailwindcss build src/styles/tailwind.css -o ./.storybook/tailwind.css",
"watch:tailwind": "tailwindcss build src/styles/tailwind.css -o ./.storybook/tailwind.css --watch"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "[email protected]:Colorful-Team-Org/colorful-component-lib.git"
}
}