-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.5 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.5 KB
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
{
"name": "rr-starter",
"private": true,
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production react-router build",
"build:storybook": "storybook build",
"dev": "react-router dev | pino-pretty",
"format:fix": "prettier --write",
"lint": "eslint --max-warnings=0 --cache --cache-location ./node_modules/.cache/eslint",
"lint:fix": "bun run lint --fix",
"prepare": "lefthook install",
"scaffold:component": "bun scripts/scaffoldComponent/index.ts",
"start": "cross-env NODE_ENV=production react-router-serve ./build/server/index.js",
"start:storybook": "storybook dev -p 6006",
"test": "vitest --logHeapUsage",
"test:coverage": "bun run test --run --coverage",
"typecheck": "react-router typegen && tsc"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-hookz/web": "^25.0.1",
"@react-router/fs-routes": "^7.1.1",
"@react-router/node": "^7.1.1",
"@react-router/serve": "^7.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isbot": "^5.1.17",
"lucide-react": "^0.469.0",
"pino": "^9.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.1",
"sharp": "^0.33.5",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"undici": "^7.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/js": "^9.17.0",
"@netlify/vite-plugin-react-router": "^1.0.0",
"@react-router/dev": "^7.1.1",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitest/coverage-v8": "2.1.8",
"autoprefixer": "^10.4.20",
"commander": "^13.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"happy-dom": "^16.2.9",
"lefthook": "^1.10.1",
"pino-pretty": "^13.0.0",
"postcss": "^8.4.49",
"prettier": "3.4.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"storybook": "^8.4.7",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}