-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 KB
/
package.json
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": "dsoares.dev",
"author": "Daniel Soares <[email protected]>",
"version": "4.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "pnpm biome check --write src",
"lint:ci": "pnpm biome ci src",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prepare": "lefthook install || true"
},
"dependencies": {
"@vercel/analytics": "1.5.0",
"@vercel/speed-insights": "1.2.0",
"clsx": "2.1.1",
"next": "15.1.7",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "5.5.0",
"sharp": "0.33.5",
"tailwind-merge": "3.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/postcss": "4.0.7",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@types/node": "22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.6",
"@vitest/ui": "3.0.6",
"jsdom": "26.0.0",
"lefthook": "1.10.10",
"postcss": "8.5.3",
"tailwindcss": "4.0.7",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.6"
},
"packageManager": "[email protected]"
}