-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "personal-page-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@vercel/speed-insights": "^2.0.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"next-translate": "3.1.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-icons": "^5.6.0",
"react-particle-image": "^1.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "25.7.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.6",
"@vitest/ui": "^4.1.6",
"autoprefixer": "^10.5.0",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"jsdom": "^29.1.1",
"next-translate-plugin": "^3.1.3",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "6.0.3",
"vitest": "^4.1.6"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}