work-hub-server/apps/web/package.json
Nicolas HOARAU 9314e72f3e feat(schema): add shared schema package with Drizzle ORM and Valibot validation
Create @workspace/schema package with Project and Task table definitions, Drizzle relations, Valibot validation schemas (select/insert/update), and wire as workspace dependency in API and Web apps.
2026-06-04 12:46:51 +04:00

36 lines
871 B
JSON

{
"name": "web",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.108",
"@iconify-json/simple-icons": "^1.2.83",
"@nuxt/a11y": "1.0.0-alpha.1",
"@workspace/schema": "workspace:*",
"@nuxt/hints": "1.1.2",
"@nuxt/image": "2.0.0",
"@nuxt/test-utils": "4.0.3",
"@nuxt/ui": "^4.7.1",
"@nuxtjs/eslint-module": "4.1.0",
"@nuxtjs/i18n": "10.4.0",
"@vueuse/nuxt": "14.3.0",
"nuxt": "^4.4.6",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"eslint": "^10.4.0",
"typescript": "^6.0.3",
"vue-tsc": "^3.3.0"
},
"packageManager": "pnpm@9.0.0"
}