This project manages its dependencies using npm and defines a package named v. Learn more
package.json 2.6 KB
{
  "name": "v",
  "version": "0.0.0",
  "scripts": {
    "dev": "vite",
    "test": "vite --mode test",
    "pre": "vite --mode pre",
    "build": "run-p type-check build-only",
    "preview": "vite preview --port 4173",
    "test:unit": "vitest --environment jsdom",
    "test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
    "test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
    "build-only": "vite build",
    "buildTest": "run-p type-check && vite build --mode test",
    "buildPre": "run-p type-check && vite build --mode pre",
    "buildProd": "run-p type-check && vite build --mode prod",
    "buildDev": "run-p type-check && vite build --mode dev",
    "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
    "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
  },
  "engines": {
    "node": ">=16.0"
  },
  "dependencies": {
    "element-plus": "^2.2.17",
    "stylelint-scss": "3.20.1",
    "axios": "^0.27.2",
    "mitt": "^3.0.0",
    "nprogress": "^0.2.0",
    "pinia": "^2.0.21",
    "store": "^2.0.12",
    "tailwindcss": "^3.1.8",
    "ua-parser-js": "^1.0.2",
    "vue": "^3.2.38",
    "vue-router": "^4.1.5"
  },
  "devDependencies": {
    "@rushstack/eslint-patch": "^1.1.4",
    "@types/jsdom": "^20.0.0",
    "@types/node": "^16.11.56",
    "@types/nprogress": "^0.2.0",
    "@types/store": "^2.0.2",
    "@types/ua-parser-js": "^0.7.36",
    "@vitejs/plugin-vue": "^3.0.3",
    "@vitejs/plugin-vue-jsx": "^2.0.1",
    "@vue/eslint-config-prettier": "^7.0.0",
    "@vue/eslint-config-typescript": "^11.0.0",
    "@vue/test-utils": "^2.0.2",
    "@vue/tsconfig": "^0.1.3",
    "autoprefixer": "^10.4.12",
    "cypress": "^10.7.0",
    "eslint": "^8.22.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-cypress": "^2.12.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-vue": "^9.3.0",
    "jsdom": "^20.0.0",
    "less": "^4.1.3",
    "npm-run-all": "^4.1.5",
    "postcss": "^8.4.16",
    "prettier": "^2.7.1",
    "start-server-and-test": "^1.14.0",
    "typescript": "~4.7.4",
    "unplugin-auto-import": "^0.11.2",
    "unplugin-vue-components": "^0.22.7",
    "vite": "^3.0.9",
    "vite-plugin-compression": "^0.5.1",
    "vite-plugin-pages": "^0.26.0",
    "vite-plugin-pwa": "^0.13.1",
    "vite-plugin-svg-icons": "^2.0.1",
    "vite-plugin-vue-layouts": "^0.7.0",
    "vite-plugin-vue-setup-extend": "^0.4.0",
    "vitest": "^0.23.0",
    "vue-global-api": "^0.4.1",
    "vue-tsc": "^0.40.7",
    "workbox-window": "^6.5.4"
  }
}