newdrive/web/package.json
Elijah f24e96efa7
All checks were successful
CI / Backend (push) Successful in 29s
CI / Frontend (push) Successful in 9m27s
CI / Contracts and repository policy (push) Successful in 7s
CI / Container (push) Successful in 18s
Harden CI and switch release builds to tagged immutable images
2026-07-15 19:21:07 -07:00

37 lines
923 B
JSON

{
"name": "drive-v2-web",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc -b --pretty false",
"test": "vitest run",
"check": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"@tanstack/react-query": "5.101.2",
"@tanstack/react-router": "1.170.18",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.7.0",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "8.1.0",
"vitest": "4.1.10"
}
}