-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "portfolio-v3",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node .output/server/index.mjs",
"test": "node --experimental-strip-types src/lib/experience.test.ts && node --experimental-strip-types src/lib/theme-script.test.ts && bun tools/tests/resume.test.mjs",
"lint": "oxlint --deny-warnings src",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "./node_modules/@typescript/native/bin/tsc --noEmit",
"doctor": "react-doctor"
},
"dependencies": {
"@fontsource/courier-prime": "^5.3.0",
"@tanstack/react-router": "1.170.32",
"@tanstack/react-start": "1.168.49",
"@vercel/speed-insights": "^1.3.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"posthog-js": "^1.430.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@oxlint/plugins": "1.80.0",
"@tailwindcss/vite": "4.3.3",
"@types/node": "^24.13.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitejs/plugin-react": "6.1.1",
"nitro": "3.0.260610-beta",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"react-doctor": "^0.9.13",
"tailwindcss": "4.3.3",
"vite": "8.2.2"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"engines": {
"node": ">=24.0.0"
},
"reactDoctor": {
"ignore": {
"files": [
"tools/oxlint/anti-slop/**"
]
}
}
}