-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "vison",
"private": true,
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --config .prettierrc.json --write \"src/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"format:check": "prettier --config .prettierrc.json --check \"src/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"fix": "npm run format && npm run lint:fix",
"validate": "npm run format:check && npm run lint",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@supabase/supabase-js": "^2.49.7",
"@tanstack/react-query": "^5.56.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"lucide-react": "^0.462.0",
"next-themes": "^0.3.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^6.30.3",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.10.2",
"autoprefixer": "^10.4.20",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3",
"typescript-eslint": "^8.56.0",
"vite": "^6.4.1"
}
}