homelab_automation/package.json
Bruno Charest 984d06a223
Some checks failed
Tests / Backend Tests (Python) (3.10) (push) Has been cancelled
Tests / Backend Tests (Python) (3.11) (push) Has been cancelled
Tests / Backend Tests (Python) (3.12) (push) Has been cancelled
Tests / Frontend Tests (JS) (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / All Tests Passed (push) Has been cancelled
feat: Implement comprehensive database schema with new models, CRUD operations, and documentation for host metrics, Docker management, and terminal sessions, while removing old test files.
2026-03-05 10:16:13 -05:00

38 lines
1.1 KiB
JSON

{
"name": "homelab-automation-frontend-tests",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"build:editor": "esbuild src/editor/index.js --bundle --outfile=app/codemirror-editor.js --format=iife --global-name=CMEditor --minify"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/user-event": "^14.5.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"esbuild": "^0.24.0",
"jsdom": "^24.0.0",
"vite": "^5.4.21",
"vitest": "^2.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/commands": "^6.9.0",
"@codemirror/lang-yaml": "^6.0.1",
"@codemirror/language": "^6.11.3",
"@codemirror/lint": "^6.9.0",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.38.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}