-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.57 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.57 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
{
"name": "stock-screening-boost",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:start:windows": "powershell -ExecutionPolicy Bypass -File ./start-database.ps1",
"db:studio": "prisma studio",
"dev": "next dev --turbo",
"postinstall": "prisma generate",
"preview": "next build && next start",
"screening:reset-legacy-data": "tsx tooling/reset-legacy-screening-data.ts",
"start": "next start",
"validate:runtime": "tsx tooling/validate-runtime-env.ts",
"worker:market-context": "tsx tooling/workers/market-context-worker.ts",
"worker:screening": "tsx tooling/workers/screening-worker.ts",
"worker:workflow": "tsx tooling/workers/workflow-worker.ts",
"test": "vitest run --config tooling/vitest.config.ts",
"test:watch": "vitest --config tooling/vitest.config.ts",
"test:coverage": "vitest run --config tooling/vitest.config.ts --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@langchain/langgraph": "^1.2.0",
"@prisma/client": "^6.6.0",
"@ricky0123/vad-web": "^0.0.24",
"@t3-oss/env-nextjs": "^0.12.0",
"@tanstack/react-query": "^5.69.0",
"@trpc/client": "^11.0.0",
"@trpc/react-query": "^11.0.0",
"@trpc/server": "^11.0.0",
"echarts": "^5.6.0",
"ioredis": "^5.10.0",
"next": "^15.2.3",
"next-auth": "5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"uuid": "^13.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@tailwindcss/postcss": "^4.0.15",
"@types/node": "^20.14.10",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^26.1.0",
"fast-check": "^4.5.3",
"postcss": "^8.5.3",
"prisma": "^6.6.0",
"tailwindcss": "^4.0.15",
"tsx": "^4.20.6",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
},
"ct3aMetadata": {
"initVersion": "7.40.0"
},
"packageManager": "[email protected]"
}