-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "peptidepure",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"batch-draft-protocols": "tsx scripts/batch-draft-protocols.ts",
"embed-protocols": "tsx scripts/embed-protocols.ts",
"ingest-tcd": "tsx scripts/ingest-tcd.ts",
"extract-protocol-metadata": "tsx scripts/extract-protocol-metadata.ts",
"sync-content-to-redis": "tsx scripts/sync-content-to-redis.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.97.1",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.98.0",
"@upstash/redis": "^1.36.3",
"authorizenet": "^1.0.10",
"next": "16.1.6",
"openai": "^6.33.0",
"pdfjs-dist": "^5.5.207",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.3",
"stripe": "^20.4.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^2.1.9"
}
}