-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.73 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
87
88
89
90
91
92
93
94
95
96
{
"name": "@awell-health/design-system",
"version": "0.12.9",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.umd.cjs",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"packageManager": "[email protected]",
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static",
"tailwind": "tailwindcss -i ./styles/globals.css -o ./style.css --watch",
"build": "tsc && vite build && tailwindcss -i ./styles/globals.css -o ./dist/style.css --minify",
"dev": "yarn tailwind & yarn storybook",
"test": "vitest --watch=false",
"test-watch": "vitest --watch=true",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix",
"prettier --write --ignore-unknown"
],
"*.{json,html}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@remixicon/react": "^4.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"react-select": "^5.8.0",
"react-use": "^17.5.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.0",
"@storybook/addon-designs": "^8.0.3",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-measure": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.14.15",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"pinst": "^3.0.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.2",
"vitest": "^2.0.5"
}
}