12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "tt",
- "version": "0.0.0",
- "private": true,
- "type": "commonjs",
- "scripts": {
- "dev": "vite",
- "build": "run-p type-check \"build-only {@}\" --",
- "preview": "vite preview",
- "test:e2e": "nightwatch tests/e2e/*",
- "test:unit": "nightwatch src/**/__tests__/*",
- "build-only": "vite build",
- "type-check": "vue-tsc --build --force",
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
- "format": "prettier --write src/"
- },
- "dependencies": {
- "ant-design-vue": "^4.0.7",
- "pinia": "^2.1.7",
- "vue": "^3.3.10",
- "vue-router": "^4.2.5"
- },
- "devDependencies": {
- "@nightwatch/vue": "^0.4.5",
- "@rushstack/eslint-patch": "^1.3.3",
- "@tsconfig/node18": "^18.2.2",
- "@types/nightwatch": "^2.3.30",
- "@types/node": "^18.19.2",
- "@vitejs/plugin-vue": "^4.5.1",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/eslint-config-prettier": "^8.0.0",
- "@vue/eslint-config-typescript": "^12.0.0",
- "@vue/test-utils": "^2.4.3",
- "@vue/tsconfig": "^0.4.0",
- "autoprefixer": "^10.4.16",
- "chromedriver": "^119.0.1",
- "eslint": "^8.49.0",
- "eslint-plugin-vue": "^9.17.0",
- "geckodriver": "^4.2.1",
- "nightwatch": "^3.3.2",
- "npm-run-all2": "^6.1.1",
- "postcss": "^8.4.32",
- "prettier": "^3.0.3",
- "tailwindcss": "^3.3.6",
- "ts-node": "^10.9.1",
- "typescript": "~5.2.0",
- "unplugin-vue-components": "^0.26.0",
- "vite": "^5.0.5",
- "vite-plugin-nightwatch": "^0.4.5",
- "vue-tsc": "^1.8.25"
- }
- }
|