Add deployment map, Nixpacks, ESLint, Storybook, and GraphQL codegen setup

This commit is contained in:
Ruslan Bakiev
2026-02-19 18:56:36 +07:00
parent fc64a51974
commit c1c6616994
13 changed files with 18833 additions and 62 deletions

View File

@@ -14,13 +14,19 @@
"postinstall": "nuxt prepare && prisma generate",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"worker:delivery": "tsx server/queues/worker.ts"
"worker:delivery": "tsx server/queues/worker.ts",
"codegen": "graphql-codegen --config codegen.ts",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@ai-sdk/vue": "^3.0.91",
"@apollo/client": "^3.14.0",
"@langchain/core": "^0.3.77",
"@langchain/langgraph": "^0.2.74",
"@langchain/openai": "^0.6.9",
"@nuxt/eslint": "^1.15.1",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@prisma/client": "^6.16.1",
"@tailwindcss/vite": "^4.1.18",
"@tiptap/extension-collaboration": "^2.27.2",
@@ -28,11 +34,13 @@
"@tiptap/extension-placeholder": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@tiptap/vue-3": "^2.27.2",
"@vue/apollo-composable": "^4.2.2",
"@xenova/transformers": "^2.17.2",
"ai": "^6.0.91",
"bullmq": "^5.58.2",
"daisyui": "^5.5.18",
"graphql": "^16.12.0",
"graphql-tag": "^2.12.6",
"ioredis": "^5.7.0",
"langfuse": "^3.38.6",
"langsmith": "^0.5.4",
@@ -45,7 +53,17 @@
"zod": "^4.1.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/typed-document-node": "^6.1.6",
"@graphql-codegen/typescript": "^5.0.8",
"@graphql-codegen/typescript-operations": "^5.0.8",
"@graphql-codegen/typescript-vue-apollo": "^4.1.2",
"@storybook/addon-essentials": "^8.6.17",
"@storybook/addon-interactions": "^8.6.17",
"@storybook/test": "^8.6.17",
"@storybook/vue3-vite": "^8.6.17",
"prisma": "^6.16.1",
"storybook": "^8.6.17",
"tsx": "^4.20.5"
}
}