opsdash-app/opsdash/package.json

29 lines
683 B
JSON

{
"name": "opsdash",
"version": "0.8.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"test:unit": "vitest --run",
"test:e2e": "playwright test",
"i18n:scan": "node ../tools/i18n/scan_strings.mjs",
"i18n:extract": "../tools/i18n/extract.sh"
},
"dependencies": {
"vue": "^3.4.27"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^27.0.1",
"typescript": "^5.4.0",
"vite": "^5.0.0",
"vitest": "^1.6.0"
}
}