platform-codebase/features/seo/frontend-admin/package.json
2026-02-06 06:49:09 -08:00

60 lines
1.9 KiB
JSON
Executable file

{
"name": "@lilith/seo-admin",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "lixbuild",
"preview": "vite preview",
"prebuild": "tsup",
"pretypecheck": "tsup",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:docker": "sh -c 'docker compose -f ../docker-compose.e2e.admin.yml up --build --abort-on-container-exit --exit-code-from e2e-tests; c=$?; docker compose -f ../docker-compose.e2e.admin.yml down -v; exit $c'"
},
"dependencies": {
"@lilith/seo-shared": "*",
"@lilith/service-react-bootstrap": "^1.2.0",
"@lilith/service-registry": "^1.3.0",
"@lilith/types": "*",
"@lilith/ui-data": "^1.1.2",
"@lilith/ui-developer-fab": "^1.0.11",
"@lilith/ui-layout": "^1.1.0",
"@lilith/ui-primitives": "^1.2.10",
"@lilith/ui-router": "^1.2.0",
"@lilith/ui-styled-components": "^6.3.8",
"@lilith/ui-typography": "^1.1.0",
"@lilith/vite-version-plugin": "*",
"@tanstack/react-query": "^5.90.19",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0"
},
"devDependencies": {
"@lilith/lix-configs": "^1.0.1",
"@lilith/playwright-e2e-docker": "^2.0.2",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"@playwright/test": "^1.57.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^3.11.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.17"
}
}