-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.54 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.12.3",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"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"
]
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild", "sharp"]
},
"dependencies": {
"@eslint/eslintrc": "^3.3.6",
"@next/third-parties": "^16.2.10",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.3.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vercel/analytics": "^2.0.1",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.39.4",
"eslint-config-next": "16.3.3",
"eslint-plugin-prettier": "^5.5.6",
"gray-matter": "^4.0.3",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"next": "^16.3.2",
"postcss": "^8.5.17",
"prettier": "^3.9.5",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.8"
}
}