| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "name": "tg-live-game-web",
- "private": true,
- "version": "1.0.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "vue-tsc -b && vite build",
- "preview": "vite preview",
- "lint": "eslint . --ext .vue,.js,.jsx,.ts,.tsx",
- "lint:fix": "eslint . --ext .vue,.js,.jsx,.ts,.tsx --fix",
- "prettier": "prettier --write .",
- "format": "prettier --write ./src",
- "format-staged": "git diff --name-only --cached --diff-filter=ACMRT | grep -E '\\.(js|ts|jsx|tsx|css|scss|json|md|vue)$' | xargs npx prettier --write",
- "lint-staged": "lint-staged",
- "test": "vitest",
- "test:run": "vitest run",
- "test:ui": "vitest --ui",
- "test:coverage": "vitest run --coverage",
- "test:e2e": "playwright test",
- "test:e2e:ui": "playwright test --ui",
- "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
- "prepare": "husky install"
- },
- "lint-staged": {
- "*.{vue,js,ts}": [
- "prettier --write"
- ]
- },
- "dependencies": {
- "@element-plus/icons-vue": "^2.1.0",
- "axios": "^1.4.0",
- "element-plus": "2.7.5",
- "hls.js": "^1.4.10",
- "pinia": "^2.0.36",
- "sass": "^1.62.1",
- "vue": "^3.5.13",
- "vue-router": "^4.2.0"
- },
- "devDependencies": {
- "@commitlint/cli": "^12.1.1",
- "@commitlint/config-conventional": "^12.1.1",
- "@playwright/test": "^1.57.0",
- "@types/node": "^18.16.8",
- "@typescript-eslint/eslint-plugin": "^8.20.0",
- "@typescript-eslint/parser": "^8.20.0",
- "@vitejs/plugin-vue": "5.0.5",
- "@vitest/coverage-v8": "^4.0.16",
- "@vitest/ui": "^4.0.16",
- "@vue/test-utils": "^2.0.0-rc.4",
- "@vue/tsconfig": "^0.4.0",
- "eslint": "^8.57.1",
- "eslint-config-airbnb-base": "^14.2.1",
- "eslint-config-prettier": "^8.1.0",
- "eslint-plugin-import": "^2.22.1",
- "eslint-plugin-prettier": "^3.3.1",
- "eslint-plugin-vue": "^9.11.0",
- "happy-dom": "^20.0.11",
- "husky": "^6.0.0",
- "lint-staged": "^10.5.4",
- "prettier": "^2.8.8",
- "typescript": "~5.6.3",
- "unplugin-auto-import": "^0.19.0",
- "unplugin-vue-components": "^0.28.0",
- "vite": "5.3.1",
- "vite-plugin-vue-devtools": "^7.7.0",
- "vitest": "^4.0.16",
- "vue-tsc": "2.1.10"
- }
- }
|