- Replaced Apollo Server with Mercurius for GraphQL API - Updated resolvers to use Mercurius-compatible GraphQL implementation - Migrated from Express to Fastify for server framework - Improved error handling with GraphQL error extensions - Added Zod for environment variable validation - Updated Prisma schema and migrations - Configured CORS and WebSocket subscriptions - Simplified GraphQL schema and resolver structure - Enhanced type safety and code organization - Replaced Apollo Server with Mercurius for GraphQL API - Updated resolvers to use Mercurius-compatible GraphQL implementation - Migrated from Express to Fastify for server framework - Improved error handling with GraphQL error extensions - Added Zod for environment variable validation - Updated Prisma schema and migrations - Configured CORS and WebSocket subscriptions - Simplified GraphQL schema and resolver structure - Enhanced type safety and code organization Reviewed-on: #1 Co-authored-by: Jusemon <juansmm@outlook.com> Co-committed-by: Jusemon <juansmm@outlook.com>
22 lines
459 B
JSON
22 lines
459 B
JSON
{
|
|
"name": "@repo/ui",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"exports": {
|
|
"./*": "./src/*.tsx"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --max-warnings 0",
|
|
"generate:component": "turbo gen react-component",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "*",
|
|
"@repo/typescript-config": "*",
|
|
"@turbo/gen": "^2.4.4",
|
|
"eslint": "^9.21.0"
|
|
},
|
|
"dependencies": {
|
|
"solid-js": "^1.9.5"
|
|
}
|
|
}
|