- 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
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "react",
|
|
"description": "React is a JavaScript library for building user interfaces.",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"version": "19.2.4",
|
|
"homepage": "https://react.dev/",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"license": "MIT",
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"cjs/",
|
|
"compiler-runtime.js",
|
|
"jsx-runtime.js",
|
|
"jsx-runtime.react-server.js",
|
|
"jsx-dev-runtime.js",
|
|
"jsx-dev-runtime.react-server.js",
|
|
"react.react-server.js"
|
|
],
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"react-server": "./react.react-server.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./jsx-runtime": {
|
|
"react-server": "./jsx-runtime.react-server.js",
|
|
"default": "./jsx-runtime.js"
|
|
},
|
|
"./jsx-dev-runtime": {
|
|
"react-server": "./jsx-dev-runtime.react-server.js",
|
|
"default": "./jsx-dev-runtime.js"
|
|
},
|
|
"./compiler-runtime": {
|
|
"react-server": "./compiler-runtime.js",
|
|
"default": "./compiler-runtime.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
}
|
|
} |