forked from achedon12/reflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.82 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
{
"name": "reflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3008",
"prebuild": "tsx scripts/gen-nginx-redirects.mts",
"build": "next build && tsx scripts/prune-export.mts",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"nginx": "tsx scripts/gen-nginx-redirects.mts",
"og": "tsx scripts/export-og.mts",
"fonts": "cp node_modules/@fontsource-variable/space-grotesk/files/space-grotesk-latin-wght-normal.woff2 node_modules/@fontsource-variable/jetbrains-mono/files/jetbrains-mono-latin-wght-normal.woff2 src/fonts/",
"levels": "tsx scripts/check-levels.mts",
"pivot": "tsx scripts/check-pivots.mts",
"seo": "tsx scripts/audit-seo.mts",
"endless": "tsx scripts/check-endless.mts",
"audit": "tsx scripts/audit-levels.mts",
"narrow": "tsx scripts/check-narrow.mts",
"draw": "tsx scripts/render-level.mts",
"check": "npm run typecheck && npm run lint && npm run build && npm run seo && npm run narrow && npm run levels && npm run endless && npm run pivot"
},
"dependencies": {
"lucide-react": "^1.33.0",
"next": "16.3.1",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/space-grotesk": "^5.3.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.3.1",
"sharp": "^0.35.3",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
},
"allowScripts": {
"unrs-resolver@1.12.2": true,
"esbuild@0.28.2": true,
"sharp@0.35.3": true
}
}