-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 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
{
"name": "ai-legal-agents-startups",
"version": "1.0.0",
"description": "AI Legal Agents for Startups - Premium legal compliance platform",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export",
"build:netlify": "next build && next export",
"backend": "cd backend && python app.py",
"ingest": "node infra/ingest.js",
"ingest:demo": "node infra/ingest-demo.js",
"ingest:enhanced": "node infra/ingest-enhanced.js"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@supabase/supabase-js": "^2.38.0",
"autoprefixer": "^10.4.16",
"cosine-similarity": "^1.0.1",
"dotenv": "^16.5.0",
"framer-motion": "^10.16.4",
"handlebars": "^4.7.8",
"langchain": "^0.2.0",
"lucide-react": "^0.292.0",
"next": "^14.0.0",
"openai": "^4.20.0",
"postcss": "^8.4.31",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"AI",
"legal",
"startups",
"compliance",
"GDPR",
"SOC2",
"privacy"
],
"author": "AI Legal Agents Team",
"license": "MIT"
}