-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "22.x",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test-watch": "vitest --watch",
"test": "vitest --no-watch",
"pretty-check": "prettier --check **/*.{ts,tsx}",
"pretty-write": "prettier --write **/*.{ts,tsx}"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@next/third-parties": "^15.3.5",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.0.11",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@vercel/analytics": "^1.3.1",
"@vitejs/plugin-react": "^4.6.0",
"clsx": "^2.1.1",
"eslint": "^9.30.1",
"eslint-config-next": "15.3.5",
"eslint-plugin-prettier": "^5.5.1",
"jsdom": "^26.0.0",
"lint-staged": "^16.1.2",
"next": "^15.3.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.15.1",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"devDependencies": {
"eslint-config-prettier": "^10.0.1"
}
}