-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "theodore-ouyang-site",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"check:protected-sources": "node scripts/check-protected-sources.mjs",
"preview:static": "node scripts/preview-static.mjs",
"typecheck": "tsc --noEmit",
"test": "npm run build && npm run test:artifact",
"test:artifact": "node --test",
"check": "npm run lint && npm run typecheck && npm test",
"lint": "eslint --config config/eslint.config.mjs . --ignore-pattern dist --ignore-pattern .next --ignore-pattern out --ignore-pattern github-pages --ignore-pattern .npm-cache",
"optimize:images": "node scripts/optimize-images.mjs"
},
"dependencies": {
"next": "16.2.12",
"react": "19.2.8",
"react-dom": "19.2.8",
"three": "0.160.0"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/three": "0.160.0",
"eslint": "9.39.4",
"eslint-config-next": "16.2.12",
"sharp": "0.35.3",
"tailwindcss": "4.2.1",
"typescript": "5.9.3"
},
"overrides": {
"postcss": "8.5.25",
"sharp": "0.35.3"
},
"type": "module"
}