-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "juangomezb",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"ci": "vitest run && next build"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"date-fns": "^4.3.0",
"framer-motion": "^12.40.0",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"next-intl": "^4.12.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-type-animation": "^3.2.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=24.x",
"pnpm": ">=9.0.0"
}
}