| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "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-staged": "pretty-quick --staged",
- "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",
- "prepare": "husky"
- },
- "lint-staged": {
- "*.{js,jsx,ts,tsx,vue}": [
- "eslint --fix",
- "prettier --write"
- ],
- "*.{css,scss,less,html,md,json}": [
- "prettier --write"
- ]
- },
- "dependencies": {
- "@element-plus/icons-vue": "^2.3.2",
- "axios": "^1.13.2",
- "element-plus": "^2.13.0",
- "hls.js": "^1.6.15",
- "pinia": "^3.0.4",
- "sass": "^1.97.1",
- "vue": "^3.5.24",
- "vue-router": "^4.6.4"
- },
- "devDependencies": {
- "@commitlint/cli": "^20.3.0",
- "@commitlint/config-conventional": "^20.3.0",
- "@playwright/test": "^1.57.0",
- "@types/node": "^20.17.0",
- "@typescript-eslint/eslint-plugin": "^8.52.0",
- "@typescript-eslint/parser": "^8.52.0",
- "@vitejs/plugin-vue": "^5.2.0",
- "@vitest/coverage-v8": "^4.0.16",
- "@vue/test-utils": "^2.4.6",
- "@vue/tsconfig": "^0.7.0",
- "eslint": "^8.57.1",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^10.1.8",
- "eslint-plugin-import": "^2.32.0",
- "eslint-plugin-prettier": "^5.5.4",
- "eslint-plugin-vue": "^9.33.0",
- "happy-dom": "^20.1.0",
- "husky": "^9.1.7",
- "lint-staged": "^16.2.7",
- "prettier": "^3.7.4",
- "pretty-quick": "^4.2.2",
- "typescript": "~5.6.3",
- "unplugin-auto-import": "^20.3.0",
- "unplugin-vue-components": "^30.0.0",
- "vite": "^5.4.0",
- "vitest": "^4.0.16",
- "vue-tsc": "^2.2.0"
- }
- }
|