-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "design-system-template",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./dist/design-system-template.js",
"require": "./dist/design-system-template.umd.cjs"
}
},
"main": "./dist/design-system-template.umd.cjs",
"module": "./dist/design-system-template.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"postinstall": "husky install",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@storybook/test": "^8.0.9",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@tailwindcss/forms": "^0.5.3",
"@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",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"storybook": "^8.0.9",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^2.1.0"
},
"packageManager": "[email protected]"
}