-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.11 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": "cur8d",
"version": "0.1.0",
"packageManager": "pnpm@11.9.0",
"scripts": {
"init": "tsx scripts/init.ts",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"analyze": "ANALYZE=true next build",
"deploy:firebase": "firebase deploy --only hosting:site",
"deploy:firebase:docs": "firebase deploy --only hosting:docs"
},
"dependencies": {
"@heroui/react": "3.2.1",
"@heroui/styles": "^3.2.1",
"@icons-pack/react-simple-icons": "^13.13.0",
"@tailwindcss/postcss": "^4.3.2",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "2.5.0",
"@vercel/speed-insights": "^2.0.0",
"cmdk": "1.1.1",
"framer-motion": "12.42.2",
"lucide-react": "1.23.0",
"next": "16.2.10",
"next-themes": "0.4.6",
"postcss": "^8.5.16",
"react": "19.2.7",
"react-dom": "19.2.7",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "10.0.1",
"@next/bundle-analyzer": "16.2.9",
"@next/eslint-plugin-next": "^16.2.9",
"@playwright/test": "1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "26.0.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-react": "6.0.3",
"@vitest/coverage-v8": "4.1.9",
"eslint": "10.6.0",
"eslint-config-next": "16.2.9",
"firebase-tools": "^15.22.3",
"globals": "^17.7.0",
"jsdom": "29.1.1",
"playwright": "1.61.1",
"prettier": "3.9.3",
"tailwindcss": "4.3.2",
"tsx": "^4.22.4",
"typescript": "6.0.3",
"vercel": "^54.18.2",
"vite": "^8.0.0",
"vitest": "4.1.9"
}
}