-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.93 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
{
"name": "pevc-platform",
"version": "1.0.0",
"private": true,
"packageManager": "npm@10.8.2",
"engines": {
"node": ">=20.17 <25",
"npm": ">=10 <12"
},
"scripts": {
"dev": "next dev -p 3000",
"build": "prisma generate && next build",
"vercel-build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"verify": "prisma validate && npm run lint && tsc --noEmit --pretty false",
"check:release-safety": "node scripts/check-release-safety.mjs",
"test:release-safety": "node --test scripts/check-release-safety.test.mjs",
"test:memory-schema": "node --test scripts/check-memory-schema.test.mjs",
"test:memory-migration-upgrade": "node --test scripts/check-memory-migration-upgrade.test.mjs",
"test:mcp-search-intelligence": "node --import tsx --test scripts/mcp-search-intelligence.test.ts scripts/mcp-user-facing-contract.test.ts",
"test:activation": "node --import tsx --test scripts/check-activation-license.test.ts scripts/check-activation-input.test.ts",
"test:memory-setup": "node --import tsx --test scripts/check-memory-setup.test.ts",
"test:compliance": "node --import tsx --test scripts/check-compliance-baseline.test.ts",
"test:bp-fact-card": "node --import tsx --test scripts/check-bp-fact-card.test.ts",
"test:activation:integration": "node --import tsx --test scripts/check-activation-concurrency.test.ts",
"smoke:public-posts": "tsx scripts/smoke-public-posts.ts",
"smoke:public-downloads": "tsx scripts/smoke-public-downloads.ts",
"materialize:file-cache": "tsx scripts/materialize-public-file-cache.ts",
"db:push": "prisma db push",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:status": "prisma migrate status",
"db:seed": "tsx prisma/seed.ts",
"setup": "prisma db push && tsx prisma/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.1",
"@aws-sdk/client-s3": "^3.1069.0",
"@floating-ui/dom": "^1.7.6",
"@modelcontextprotocol/sdk": "1.26.0",
"@prisma/client": "^5.22.0",
"@tiptap/extension-link": "^3.23.6",
"@tiptap/extension-placeholder": "^3.23.6",
"@tiptap/pm": "^3.23.6",
"@tiptap/react": "^3.23.6",
"@tiptap/starter-kit": "^3.23.6",
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"jszip": "^3.10.1",
"marked": "^18.0.5",
"mcp-handler": "^1.1.0",
"next": "15.5.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resend": "^6.12.4",
"tailwind-merge": "^2.5.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.19",
"postcss": "^8.4.47",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}