Add full CRUD operations for Pokemon, Habitats, Items, Recipes, and Configs Switch package manager from npm to pnpm across the project Remove static seed data in favor of UI-driven data management
28 lines
633 B
JSON
28 lines
633 B
JSON
{
|
|
"name": "@pokopia/frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.33.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 0.0.0.0 --port 3000",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"lint": "vue-tsc --noEmit",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@vitejs/plugin-vue": "latest",
|
|
"vite": "latest",
|
|
"vue": "latest",
|
|
"vue-router": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"@vue/tsconfig": "latest",
|
|
"typescript": "latest",
|
|
"vitest": "latest",
|
|
"vue-tsc": "latest"
|
|
}
|
|
}
|