-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.33 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
{
"name": "backspace",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"test:ui": "vitest --ui",
"knip": "knip"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-tabs": "^1.1.13",
"@supabase/supabase-js": "^2.79.0",
"@tailwindcss/vite": "^4.1.16",
"@tanstack/react-query": "^5.90.6",
"class-variance-authority": "^0.7.1",
"dayjs": "^1.11.19",
"immer": "^10.2.0",
"lucide-react": "^0.552.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router": "^7.9.5",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.16",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^3.1.0",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^4.0.8",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"eslint": "^9.39.1",
"eslint-config-airbnb-extended": "^2.3.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.5.0",
"happy-dom": "^20.0.10",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"knip": "^5.69.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3",
"vite": "npm:rolldown-vite@7.1.14",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.8"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}