feat(app): initialize analytical panel

This commit is contained in:
Gleb Korotkiy
2026-06-19 17:15:05 +03:00
commit 75e9616bcb
25 changed files with 2994 additions and 0 deletions

42
package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "analytical-panel",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "bun run typecheck && vite build",
"preview": "vite preview",
"typecheck": "vue-tsc -b",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"pinia": "^3.0.4",
"vue": "^3.5.34",
"vue-router": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.0",
"@types/node": "^24.12.3",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.2",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"typescript": "~6.0.2",
"typescript-eslint": "^8.61.1",
"vite": "^8.0.12",
"vitest": "^4.1.9",
"vue-tsc": "^3.2.8"
}
}