|
| 1 | +{ |
| 2 | + "name": "tanstack-react-start-e2e-dev-ssr-styles", |
| 3 | + "private": true, |
| 4 | + "sideEffects": false, |
| 5 | + "type": "module", |
| 6 | + "scripts": { |
| 7 | + "dev": "vite dev --port 3000", |
| 8 | + "dev:e2e": "vite dev --port $PORT", |
| 9 | + "dev:e2e:disabled": "SSR_STYLES=disabled vite dev --port $PORT", |
| 10 | + "dev:e2e:custom-basepath": "SSR_STYLES=custom-basepath vite dev --port $PORT", |
| 11 | + "dev:e2e:nitro": "VITE_USE_NITRO=true vite dev --port $PORT", |
| 12 | + "dev:e2e:disabled:nitro": "SSR_STYLES=disabled VITE_USE_NITRO=true vite dev --port $PORT", |
| 13 | + "dev:e2e:custom-basepath:nitro": "SSR_STYLES=custom-basepath VITE_USE_NITRO=true vite dev --port $PORT", |
| 14 | + "build": "vite build && tsc --noEmit", |
| 15 | + "start": "pnpx srvx --prod -s ../client dist/server/server.js", |
| 16 | + "test:e2e:dev": "MODE=dev playwright test --project=chromium", |
| 17 | + "test:e2e:dev:disabled": "MODE=dev SSR_STYLES=disabled playwright test --project=chromium", |
| 18 | + "test:e2e:dev:custom-basepath": "MODE=dev SSR_STYLES=custom-basepath playwright test --project=chromium", |
| 19 | + "test:e2e:dev:nitro": "MODE=dev VITE_USE_NITRO=true playwright test --project=chromium", |
| 20 | + "test:e2e:dev:disabled:nitro": "MODE=dev SSR_STYLES=disabled VITE_USE_NITRO=true playwright test --project=chromium", |
| 21 | + "test:e2e:dev:custom-basepath:nitro": "MODE=dev SSR_STYLES=custom-basepath VITE_USE_NITRO=true playwright test --project=chromium", |
| 22 | + "test:e2e": "rm -rf port*.txt; pnpm run test:e2e:dev && pnpm run test:e2e:dev:disabled && pnpm run test:e2e:dev:custom-basepath", |
| 23 | + "test:e2e:nitro": "rm -rf port*.txt; pnpm run test:e2e:dev:nitro && pnpm run test:e2e:dev:disabled:nitro && pnpm run test:e2e:dev:custom-basepath:nitro" |
| 24 | + }, |
| 25 | + "dependencies": { |
| 26 | + "@tanstack/react-router": "workspace:*", |
| 27 | + "@tanstack/react-start": "workspace:*", |
| 28 | + "react": "^19.0.0", |
| 29 | + "react-dom": "^19.0.0" |
| 30 | + }, |
| 31 | + "devDependencies": { |
| 32 | + "@playwright/test": "^1.50.1", |
| 33 | + "@tanstack/router-e2e-utils": "workspace:*", |
| 34 | + "@types/node": "^22.10.2", |
| 35 | + "@types/react": "^19.0.8", |
| 36 | + "@types/react-dom": "^19.0.3", |
| 37 | + "@vitejs/plugin-react": "^4.3.4", |
| 38 | + "nitro": "3.0.1-alpha.2", |
| 39 | + "srvx": "^0.11.7", |
| 40 | + "typescript": "^5.7.2", |
| 41 | + "vite": "^7.3.1", |
| 42 | + "vite-tsconfig-paths": "^5.1.4", |
| 43 | + "zod": "^3.24.2" |
| 44 | + } |
| 45 | +} |
0 commit comments