-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "open-recommender",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"_build": "cd packages/shared && tsc -b && cd ../cli && tsc -b && cd ../server && tsc -b && cd ../client && tsc -b && yarn build",
"build": "yarn workspace server build:prisma && yarn workspace server download-secrets && yarn _build",
"server": "yarn workspace server dev",
"client": "yarn workspace client dev",
"worker": "yarn workspace server worker"
},
"dependencies": {
"dotenv": "^16.3.1",
"modelfusion": "^0.41.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@trpc/client": "^11.0.0-next-beta.193",
"@trpc/server": "^11.0.0-next-beta.193",
"@types/node": "^20.8.3",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prisma": "5.8.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"zod-prisma": "^0.5.4"
},
"packageManager": "[email protected]"
}