-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.27 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
{
"private": true,
"name": "s2v-schema-explorer",
"type": "module",
"scripts": {
"tsc": "react-router typegen && tsc",
"dev": "node scripts/compress-schemas.ts && react-router dev",
"build": "node scripts/compress-schemas.ts && react-router build && node scripts/flatten-prerender.ts && node scripts/generate-llms.ts",
"lastmod": "node scripts/generate-lastmod.ts",
"sitemap": "node scripts/generate-sitemap.ts",
"preview": "vite preview",
"lint": "oxlint --react-perf-plugin --jsx-a11y-plugin *.ts src scripts",
"fmt": "oxfmt *.ts src scripts",
"test": "tsc && oxlint --react-perf-plugin --jsx-a11y-plugin *.ts src scripts && vitest run --reporter=dot && oxfmt --check *.ts src scripts",
"test:watch": "vitest"
},
"dependencies": {
"@react-router/node": "^8.0.1",
"@tanstack/react-virtual": "^3.14.9",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.0.1"
},
"devDependencies": {
"@linaria/react": "^8.1.1",
"@react-router/dev": "^8.3.0",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@wyw-in-js/vite": "^2.3.1",
"oxfmt": "^0.67.0",
"oxlint": "^1.77.0",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^5.0.0"
}
}