-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.87 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 4.87 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "use-growchief",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"scripts": {
"dev:billing": "npx concurrently \"stripe listen --forward-to localhost:3000/webhook/billing\" \"npm run dev\"",
"dev": "pnpm run --filter ./apps/frontend --filter ./apps/backend --filter ./apps/orchestrator --parallel dev",
"build": "pnpm -r --workspace-concurrency=1 --filter ./apps/frontend --filter ./apps/backend -filter ./apps/orchestrator run build",
"build:backend": "pnpm -r --filter ./apps/backend run build",
"build:frontend": "pnpm -r --filter ./apps/frontend run build",
"build:orchestrator": "pnpm -r --filter ./apps/orchestrator run build",
"start:backend": "pnpm --filter ./apps/backend run start",
"start:frontend": "pnpm --filter ./apps/frontend run start",
"start:orchestrator": "pnpm --filter ./apps/orchestrator run start",
"prisma-generate": "pnpm dlx prisma generate --schema ./schema.prisma",
"prisma-db-push": "pnpm dlx prisma db push --schema ./schema.prisma",
"pm2": "pnpm run pm2-run",
"pm2-run": "pm2 delete all || true && pnpm run prisma-db-push && pnpm run --parallel pm2 && pm2 logs",
"postinstall": "pnpm run prisma-generate"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"packageManager": "pnpm@10.7.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"@dagrejs/dagre": "^1.1.5",
"@hookform/resolvers": "^5.2.1",
"@langchain/openai": "^0.6.9",
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/microservices": "^11.1.6",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-socket.io": "^11.1.6",
"@nestjs/schedule": "^6.0.0",
"@nestjs/websockets": "^11.1.6",
"@prisma/client": "^6.13.0",
"@tailwindcss/vite": "^4.1.11",
"@temporalio/activity": "^1.12.2",
"@temporalio/client": "^1.12.2",
"@temporalio/common": "^1.12.2",
"@temporalio/worker": "^1.12.2",
"@temporalio/workflow": "^1.12.2",
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cookie": "^1.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/country-list": "^2.1.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^6.4.17",
"@types/string-similarity": "^4.0.2",
"@xyflow/react": "^12.8.2",
"async-mutex": "^0.5.0",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"bullmq": "^5.58.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"clsx": "^2.1.1",
"compression": "^1.8.1",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"country-list": "^2.3.0",
"dayjs": "^1.11.13",
"ghost-cursor": "^1.4.1",
"googleapis": "^155.0.1",
"https-proxy-agent": "^7.0.6",
"is-domain-name": "^1.0.1",
"is-ip": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mime-types": "^3.0.1",
"nestjs-temporal-core": "^3.0.10",
"nodemailer": "^7.0.5",
"normalize-url": "^8.0.2",
"patchright": "1.50.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-hotkeys-hook": "^5.1.0",
"react-loader-spinner": "^6.1.6",
"react-router": "^7.8.0",
"react-tooltip": "^5.29.1",
"recharts": "^2.13.3",
"reflect-metadata": "^0.2.2",
"resend": "^6.0.1",
"rxjs": "^7.8.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"string-similarity": "^4.0.4",
"stripe": "^18.4.0",
"swr": "^2.3.5",
"tailwindcss": "^4.1.11",
"tldts": "^7.0.12",
"use-debounce": "^10.0.5",
"use-local-storage": "^3.0.0",
"uuid": "^11.1.0",
"zod": "^4.1.5",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.32.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@types/express": "^5.0.0",
"@types/is-domain-name": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^22.17.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/recharts": "^1.8.29",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "^4.7.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jest": "^30.0.0",
"nodemon": "^3.1.10",
"pm2": "^6.0.8",
"prettier": "^3.6.2",
"sass-embedded": "^1.90.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.0"
}
}