-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "cur8d",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "npx serve@latest out",
"lint": "eslint .",
"format": "prettier --write .",
"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.4",
"@heroui/styles": "^3.2.3",
"@tailwindcss/postcss": "^4.3.3",
"@vercel/blob": "2.8.0",
"cmdk": "1.1.1",
"framer-motion": "13.1.0",
"lucide-react": "1.31.0",
"next": "16.3.1",
"next-themes": "0.4.6",
"postcss": "^8.5.25",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-icons": "^5.7.0",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "10.0.1",
"@next/bundle-analyzer": "16.3.1",
"@next/eslint-plugin-next": "^16.3.1",
"@playwright/test": "1.62.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-react": "6.0.5",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.8.1",
"eslint-config-next": "16.3.1",
"firebase-tools": "^15.27.0",
"globals": "^17.11.0",
"jsdom": "30.0.1",
"playwright": "1.62.1",
"prettier": "3.9.6",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"vite": "^8.2.0",
"vitest": "4.1.10"
}
}