This repository was archived by the owner on Sep 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"name": "submix",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint .",
"typecheck": "pnpm exec tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-alert-dialog": "^1.1.16",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-radio-group": "^1.4.0",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-separator": "^1.1.9",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.14",
"@types/qrcode": "^1.5.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.2",
"js-yaml": "^4.2.0",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"next-themes": "^0.4.6",
"qrcode": "^1.5.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hook-form": "^7.77.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^16.2.7",
"@tailwindcss/postcss": "^4.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.7",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"pnpm lint"
],
"*.{ts,tsx}": [
"pnpm typecheck"
]
}
}