Files
headroom/frontend/node_modules/@sveltejs/adapter-node/package.json
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- Delete old Vite+Svelte frontend
- Initialize new SvelteKit project with TypeScript
- Configure Tailwind CSS v4 + DaisyUI
- Implement JWT authentication with auto-refresh
- Create login page with form validation (Zod)
- Add protected route guards
- Update Docker configuration for single-stage build
- Add E2E tests with Playwright (6/11 passing)
- Fix Svelte 5 reactivity with $state() runes

Known issues:
- 5 E2E tests failing (timing/async issues)
- Token refresh implementation needs debugging
- Validation error display timing
2026-02-17 16:19:59 -05:00

62 lines
1.4 KiB
JSON

{
"name": "@sveltejs/adapter-node",
"version": "5.5.3",
"description": "Adapter for SvelteKit apps that generates a standalone Node server",
"keywords": [
"adapter",
"deploy",
"hosting",
"node.js",
"svelte",
"sveltekit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/kit.git",
"directory": "packages/adapter-node"
},
"license": "MIT",
"homepage": "https://svelte.dev/docs/kit/adapter-node",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"files": [
"files",
"index.js",
"index.d.ts",
"ambient.d.ts"
],
"devDependencies": {
"@polka/url": "^1.0.0-next.28",
"@sveltejs/vite-plugin-svelte": "^6.0.0-next.3",
"@types/node": "^18.19.119",
"polka": "^1.0.0-next.28",
"sirv": "^3.0.2",
"typescript": "^5.3.3",
"vitest": "^4.0.0",
"@sveltejs/kit": "^2.51.0"
},
"dependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"rollup": "^4.9.5"
},
"peerDependencies": {
"@sveltejs/kit": "^2.4.0"
},
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"test": "vitest run",
"check": "tsc",
"lint": "prettier --check .",
"format": "pnpm lint --write"
}
}