Mirrors youngstartup/frontend/startups_portal scaffolding: Vite, Vue 3 (composition API + script setup), TypeScript strict, Pinia, Vue Router 5, oxlint + eslint + oxfmt, and Cypress with db:reset / db:seed tasks. Views and the auth store are stubs filled in by the next branches; routes and the header chrome are wired so the build passes.
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "blog_portal",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build",
|
|
"lint": "run-s lint:*",
|
|
"lint:oxlint": "oxlint . --fix",
|
|
"lint:eslint": "eslint . --fix --cache",
|
|
"format": "oxfmt src/",
|
|
"cypress:dev": "cypress open",
|
|
"cypress:run": "cypress run"
|
|
},
|
|
"dependencies": {
|
|
"pinia": "^3.0.4",
|
|
"vue": "^3.5.31",
|
|
"vue-router": "^5.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node24": "^24.0.4",
|
|
"@types/node": "^24.12.0",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"@vitejs/plugin-vue-jsx": "^5.1.5",
|
|
"@vue/eslint-config-typescript": "^14.7.0",
|
|
"@vue/tsconfig": "^0.9.1",
|
|
"cypress": "^15.13.1",
|
|
"eslint": "^10.1.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-oxlint": "~1.57.0",
|
|
"eslint-plugin-vue": "~10.8.0",
|
|
"jiti": "^2.6.1",
|
|
"npm-run-all2": "^8.0.4",
|
|
"oxfmt": "^0.42.0",
|
|
"oxlint": "~1.57.0",
|
|
"typescript": "~6.0.0",
|
|
"vite": "^8.0.3",
|
|
"vite-plugin-vue-devtools": "^8.1.1",
|
|
"vue-tsc": "^3.2.6"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0"
|
|
}
|
|
}
|