forked from receter/my-component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.49 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://json.schemastore.org/package",
"name": "catalyst-ui",
"author": "TheBranchDriftCatalyst",
"private": true,
"version": "0.1.0",
"type": "module",
"main": "./dist/catalyst.js",
"types": "./dist/catalyst.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/receter/my-component-library"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "foreman start -f Procfile.dev",
"dev:preview": "vite preview ./app",
"dev:storybook": "storybook dev -p 6006",
"build:watch": "tsc --p ./tsconfig-build.json && vite build --watch",
"dev:test": "test-storybook --coverage",
"build": "tsc --p ./tsconfig-build.json && vite build",
"build:storybook": "storybook build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"postinstall": "yarn playwright install",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@faker-js/faker": "^8.4.1",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@storybook/addon-essentials": "^8.1.4",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-jest": "^8.1.4",
"@storybook/addon-links": "^8.1.4",
"@storybook/addon-onboarding": "^8.1.4",
"@storybook/addon-storysource": "^8.1.4",
"@storybook/addon-themes": "^8.1.4",
"@storybook/blocks": "^8.1.4",
"@storybook/react": "^8.1.4",
"@storybook/react-vite": "^8.1.4",
"@storybook/test": "^8.1.4",
"@storybook/test-runner": "^0.18.1",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"debug": "^4.3.4",
"eslint": "^9.3.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^10.4.1",
"jest-image-snapshot": "^6.4.0",
"lodash": "^4.17.21",
"lucide-react": "^0.379.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"storybook": "^8.0.4",
"storybook-addon-mock": "^5.0.0",
"storybook-dark-mode": "^4.0.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.3",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-dynamic-import": "^1.5.0",
"vite-plugin-istanbul": "^6.0.2",
"vite-plugin-lib-inject-css": "^2.1.1",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@icons-pack/react-simple-icons": "^9.5.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@storybook/addon-coverage": "^1.0.4",
"@tanstack/react-table": "^8.17.3",
"dlx": "^0.2.1",
"glob": "^10.4.1",
"react-hook-form": "^7.51.5",
"react-wrap-balancer": "^1.1.1",
"storybook": "^8.1.5",
"zod": "^3.23.8"
}
}