-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "react-component-library",
"version": "0.0.0",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/react-component-library.cjs",
"import": "./dist/react-component-library.es.js"
},
"./styles.css": {
"require": "./dist/styles.css",
"default": "./dist/styles.css"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && npm run build:css",
"build:css": "tailwindcss -m -i ./src/tailwind-entry.css -o ./dist/styles.css",
"storybook": "concurrently \"npm run storybook:css\" \"storybook dev -p 6006\"",
"storybook:css": "tailwindcss -w -i ./src/tailwind-entry.css -o ./src/index.css",
"build-storybook": "concurrently \"npm run build-storybook:css\" \"storybook build\"",
"build-storybook:css": "tailwindcss -m -i ./src/tailwind-entry.css -o ./src/index.css",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-essentials": "^7.0.0-rc.5",
"@storybook/addon-interactions": "^7.0.0-rc.5",
"@storybook/addon-links": "^7.0.0-rc.5",
"@storybook/blocks": "^7.0.0-rc.5",
"@storybook/react": "^7.0.0-rc.5",
"@storybook/react-vite": "^7.0.0-rc.5",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-rc.5",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-tsconfig-paths": "^4.0.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}