-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.76 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
{
"name": "regelrett",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"start": "vite",
"lint": "eslint --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint --fix --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write 'app/**/*.{js,ts,tsx,json,css,md}'",
"preview": "vite preview",
"typecheck": "react-router typegen && tsc",
"test": "vitest run"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-table": "^8.21.3",
"@vitejs/plugin-react": "^6.0.2",
"axios": "^1.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-cookie": "^3.0.8",
"lucide-react": "^0.577.0",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-markdown": "^10.1.0",
"react-router": "^7.17.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"yaml": "^2.9.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.19.37",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript-eslint": "^8.61.0",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"pnpm": {
"overrides": {
"flat-cache>flatted": "3.4.2",
"rollup@<4.59.0": "4.59.0",
"minimatch@<3.1.4": "3.1.5",
"minimatch@>=9.0.0 <9.0.7": "9.0.9",
"ajv@<6.14.0": "6.14.0",
"vite>esbuild": "0.28.1",
"picomatch": "4.0.4"
}
}
}