- Updated @moonrepo/cli to version 2.2.5 and typescript to version 6.0.3 in package.json and shared package.json. - Modified build script in package.json to run shared, api, and web builds. - Removed unnecessary type and language declarations from shared moon.yml. - Added ignoreDeprecations option in tsconfig.base.json to handle TypeScript 6.0 deprecations.
31 lines
738 B
JSON
31 lines
738 B
JSON
{
|
|
"name": "@zeavis/api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"start": "bun src/index.ts",
|
|
"typecheck": "tsc --project tsconfig.json",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate"
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/cors": "1.4.2",
|
|
"@tensorflow/tfjs": "4.22.0",
|
|
"@zeavis/shared": "workspace:*",
|
|
"bcryptjs": "^3.0.3",
|
|
"drizzle-orm": "^0.45.2",
|
|
"elysia": "^1.4.28",
|
|
"jpeg-js": "0.4.4",
|
|
"pngjs": "7.0.0",
|
|
"postgres": "^3.4.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^3.0.0",
|
|
"@types/bun": "latest",
|
|
"drizzle-kit": "^0.31.10",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|