package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "tt",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "commonjs",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "run-p type-check \"build-only {@}\" --",
  9. "preview": "vite preview",
  10. "test:e2e": "nightwatch tests/e2e/*",
  11. "test:unit": "nightwatch src/**/__tests__/*",
  12. "build-only": "vite build",
  13. "type-check": "vue-tsc --build --force",
  14. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
  15. "format": "prettier --write src/"
  16. },
  17. "dependencies": {
  18. "ant-design-vue": "^4.0.7",
  19. "pinia": "^2.1.7",
  20. "vue": "^3.3.10",
  21. "vue-router": "^4.2.5"
  22. },
  23. "devDependencies": {
  24. "@nightwatch/vue": "^0.4.5",
  25. "@rushstack/eslint-patch": "^1.3.3",
  26. "@tsconfig/node18": "^18.2.2",
  27. "@types/nightwatch": "^2.3.30",
  28. "@types/node": "^18.19.2",
  29. "@vitejs/plugin-vue": "^4.5.1",
  30. "@vitejs/plugin-vue-jsx": "^3.1.0",
  31. "@vue/eslint-config-prettier": "^8.0.0",
  32. "@vue/eslint-config-typescript": "^12.0.0",
  33. "@vue/test-utils": "^2.4.3",
  34. "@vue/tsconfig": "^0.4.0",
  35. "autoprefixer": "^10.4.16",
  36. "chromedriver": "^119.0.1",
  37. "eslint": "^8.49.0",
  38. "eslint-plugin-vue": "^9.17.0",
  39. "geckodriver": "^4.2.1",
  40. "nightwatch": "^3.3.2",
  41. "npm-run-all2": "^6.1.1",
  42. "postcss": "^8.4.32",
  43. "prettier": "^3.0.3",
  44. "tailwindcss": "^3.3.6",
  45. "ts-node": "^10.9.1",
  46. "typescript": "~5.2.0",
  47. "unplugin-vue-components": "^0.26.0",
  48. "vite": "^5.0.5",
  49. "vite-plugin-nightwatch": "^0.4.5",
  50. "vue-tsc": "^1.8.25"
  51. }
  52. }