-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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": "tsc",
"dev": "react-router dev",
"build": "react-router build && node scripts/flatten-prerender.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": "^7.13.1",
"@tanstack/react-virtual": "^3.13.22",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@linaria/react": "^7.0.1",
"@react-router/dev": "^7.13.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@wyw-in-js/vite": "^1.0.6",
"oxfmt": "^0.41.0",
"oxlint": "^1.55.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^3.2.0"
}
}