- 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": "eslint-config-prettier",
|
|
"version": "10.1.8",
|
|
"type": "commonjs",
|
|
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
|
|
"repository": "prettier/eslint-config-prettier",
|
|
"homepage": "https://github.com/prettier/eslint-config-prettier#readme",
|
|
"author": "Simon Lydell",
|
|
"maintainers": [
|
|
"JounQin (https://www.1stG.me) <admin@1stg.me>"
|
|
],
|
|
"funding": "https://opencollective.com/eslint-config-prettier",
|
|
"license": "MIT",
|
|
"bin": "bin/cli.js",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./flat": {
|
|
"types": "./flat.d.ts",
|
|
"default": "./flat.js"
|
|
},
|
|
"./prettier": {
|
|
"types": "./prettier.d.ts",
|
|
"default": "./prettier.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"flat.d.ts",
|
|
"flat.js",
|
|
"index.d.ts",
|
|
"index.js",
|
|
"prettier.d.ts",
|
|
"prettier.js"
|
|
],
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintconfig",
|
|
"eslint-config",
|
|
"eslint-prettier",
|
|
"prettier"
|
|
],
|
|
"peerDependencies": {
|
|
"eslint": ">=7.0.0"
|
|
}
|
|
} |