-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.8 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
{
"name": "identity-prism",
"version": "1.0.0-hardened",
"description": "Unified Identity Prism OS: RAG Intelligence + Digital Twin Memory (Hardened v1.0)",
"type": "module",
"imports": {
"@/*": "./src/*"
},
"scripts": {
"dev": "next dev",
"build": "npm run prisma:generate && prisma migrate deploy --schema=prisma/postgres/schema.prisma && next build",
"start": "next start",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"test": "tsx --test test/hardening/*.test.ts test/user-flows/*.test.ts",
"seed:profile": "tsx scripts/run-seed.ts",
"postinstall": "npm run prisma:generate",
"prisma:generate": "prisma generate --schema=prisma/postgres/schema.prisma",
"prisma:migrate:pg": "prisma migrate dev --schema=prisma/postgres/schema.prisma",
"security:scan": "bash scripts/scan-secrets.sh",
"load-test": "tsx scripts/load-test.ts"
},
"engines": {
"node": "22.x"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.80",
"@ai-sdk/react": "^3.0.221",
"@langchain/classic": "^1.0.31",
"@langchain/community": "^1.1.27",
"@langchain/core": "^1.2.1",
"@langchain/google-genai": "^2.2.0",
"@langchain/openai": "^1.4.4",
"@langchain/textsplitters": "^1.0.1",
"@prisma/client": "^6.19.3",
"@sanity/client": "^7.23.0",
"@sanity/vision": "^6.2.0",
"@vercel/analytics": "latest",
"@vercel/blob": "^2.4.0",
"@vercel/functions": "^3.4.3",
"@vercel/sandbox": "latest",
"@web-std/file": "^3.0.3",
"ai": "^6.0.188",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"filepond": "^4.30.6",
"framer-motion": "^12.38.0",
"langchain": "^1.3.3",
"langfuse": "^3.38.20",
"lucide-react": "^0.300.0",
"mammoth": "^1.12.0",
"next": "^15.2.4",
"next-sanity": "^13.1.1",
"openai": "^6.34.0",
"prisma": "^6.19.3",
"react": "^18",
"react-dom": "^18",
"react-filepond": "^7.1.2",
"react-toastify": "^10.0.4",
"sanity": "^6.2.0",
"styled-components": "^6.4.3",
"unpdf": "^1.6.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.6",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.2.4",
"postcss": "^8.5.10",
"tailwindcss": "^3.3.0",
"tsx": "^4.19.4",
"typescript": "^5"
},
"overrides": {
"mongodb": "^7.1.1",
"qs": "^6.15.2",
"postcss": "^8.5.10",
"smol-toml": "^1.6.1",
"undici": "^7.28.0",
"@vercel/blob": {
"undici": "^6.27.0"
},
"js-yaml": "^4.2.0",
"uuid": "^11.1.1",
"form-data": "^4.0.6",
"ws": "^8.21.0",
"esbuild": "^0.28.1"
}
}