Files
PhotonVision/photon-client/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2019-03-10 22:29:29 +02:00
{
"name": "photonclient",
"version": "0.0.0",
2019-03-10 22:29:29 +02:00
"private": true,
"type": "module",
2026-05-03 19:50:52 -05:00
"engines": {
"node": "24.x"
},
2019-03-10 22:29:29 +02:00
"scripts": {
"dev": "vite",
"preview": "vite preview --port 4173",
"build": "vite build",
"build-demo": "vite build --mode demo",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
2025-12-04 22:25:48 -06:00
"format": "prettier --write src/ tests/",
2025-10-30 18:52:14 -05:00
"lint-ci": "eslint . --max-warnings 0 --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
2025-12-04 22:25:48 -06:00
"format-ci": "prettier --check src/",
"test": "playwright test",
"test-ui": "playwright test --ui",
"test-setup": "playwright install --with-deps",
"type-check": "vue-tsc --noEmit"
2019-03-10 22:29:29 +02:00
},
"dependencies": {
"@fontsource/prompt": "^5.2.6",
"@mdi/font": "^7.4.47",
"@msgpack/msgpack": "^3.1.2",
"axios": "^1.11.0",
"echarts": "^6.0.0",
"jspdf": "^3.0.1",
"pinia": "^3.0.2",
"three": "^0.178.0",
"vue": "^3.5.13",
"vue-router": "^4.5.1",
"vue3-virtual-scroll-list": "^0.2.1",
"vuetify": "^3.8.3"
2019-03-10 22:29:29 +02:00
},
"devDependencies": {
"@eslint/js": "^9.31.0",
2025-12-04 22:25:48 -06:00
"@playwright/test": "^1.56.1",
2026-05-03 19:50:52 -05:00
"@types/node": "^24.0.0",
"@types/three": "^0.178.0",
2026-05-03 19:50:52 -05:00
"@vitejs/plugin-vue": "^6.0.6",
"vue-tsc": "^3.2.5",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.31.0",
"eslint-plugin-vue": "^10.7.0",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"typescript": "^5.8.3",
2026-05-03 19:50:52 -05:00
"vite": "^8.0.10",
"vite-plugin-vuetify": "^2.1.1"
}
2019-03-10 22:29:29 +02:00
}