1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "hvac-web",
- "version": "1.0.0",
- "private": true,
- "type": "module",
- "scripts": {
- "dev": "vite --host --open",
- "build": "run-p type-check \"build-only {@}\" --",
- "preview": "vite preview",
- "test:unit": "vitest",
- "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
- "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
- "build-only": "vite build",
- "clean:dist": "rimraf dist",
- "clean:node": "rimraf node_modules",
- "type-check": "vue-tsc --build",
- "lint": "eslint . --fix",
- "format": "prettier --write .",
- "prepare": "husky"
- },
- "dependencies": {
- "element-plus": "^2.9.3",
- "pinia": "^2.3.0",
- "vue": "^3.5.13",
- "vue-i18n": "^11.0.1",
- "vue-router": "^4.5.0"
- },
- "devDependencies": {
- "@commitlint/cli": "^19.7.1",
- "@commitlint/config-conventional": "^19.7.1",
- "@iconify-json/mdi": "^1.2.2",
- "@intlify/unplugin-vue-i18n": "^6.0.3",
- "@tsconfig/node22": "^22.0.0",
- "@types/jsdom": "^21.1.7",
- "@types/node": "^22.10.2",
- "@unocss/eslint-config": "^0.65.4",
- "@vitejs/plugin-vue": "^5.2.1",
- "@vitejs/plugin-vue-jsx": "^4.1.1",
- "@vitest/eslint-plugin": "1.1.20",
- "@vue/eslint-config-prettier": "^10.1.0",
- "@vue/eslint-config-typescript": "^14.1.3",
- "@vue/test-utils": "^2.4.6",
- "@vue/tsconfig": "^0.7.0",
- "cypress": "^13.17.0",
- "eslint": "^9.14.0",
- "eslint-plugin-cypress": "^4.1.0",
- "eslint-plugin-import": "^2.31.0",
- "eslint-plugin-jsonc": "^2.18.2",
- "eslint-plugin-simple-import-sort": "^12.1.1",
- "eslint-plugin-vue": "^9.30.0",
- "globals": "^15.14.0",
- "husky": "^9.1.7",
- "jsdom": "^25.0.1",
- "lint-staged": "^15.4.3",
- "npm-run-all2": "^7.0.2",
- "prettier": "^3.3.3",
- "prettier-plugin-packagejson": "^2.5.6",
- "rimraf": "^6.0.1",
- "sass": "^1.83.0",
- "start-server-and-test": "^2.0.9",
- "stylelint": "^16.12.0",
- "stylelint-config-recess-order": "^5.1.1",
- "stylelint-config-standard-scss": "^14.0.0",
- "stylelint-config-standard-vue": "^1.0.0",
- "typescript": "~5.6.3",
- "unocss": "^0.65.4",
- "unplugin-auto-import": "^19.0.0",
- "unplugin-vue-components": "^28.0.0",
- "vite": "^6.0.7",
- "vite-plugin-vue-devtools": "^7.7.0",
- "vitest": "^2.1.8",
- "vue-tsc": "^2.2.0"
- }
- }
|