-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.22 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
{
"name": "react-router-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "pnpm format:check && pnpm lint",
"dev": "vite dev",
"format": "oxfmt --config ../../oxfmt.config.ts --ignore-path ../../.gitignore .",
"format:check": "oxfmt --config ../../oxfmt.config.ts --ignore-path ../../.gitignore --check .",
"generate": "pnpm exec next-openapi-gen generate",
"lint": "oxlint --type-aware --config ../../oxlint.config.ts . --ignore-path ../../.gitignore --deny-warnings",
"lint:fix": "oxlint --type-aware --config ../../oxlint.config.ts . --ignore-path ../../.gitignore --fix --deny-warnings",
"start": "vite preview"
},
"dependencies": {
"@scalar/api-reference-react": "catalog:",
"react": "catalog:react-router",
"react-dom": "catalog:react-router",
"react-router": "catalog:react-router"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/react": "catalog:react-router",
"@types/react-dom": "catalog:react-router",
"@vitejs/plugin-react": "catalog:react-router",
"ajv": "catalog:",
"next-openapi-gen": "workspace:*",
"typescript": "catalog:",
"vite": "catalog:react-router"
}
}