forked from pinkycollie/ai.mbtq.dev
-
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.31 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.31 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": "mbtq-ai-platform",
"version": "2.0.0",
"description": "Generative AI Development Platform with Sign Language capabilities, Deaf-centric accessibility, and containerized deployment",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"db:setup": "node scripts/setup-db.mjs",
"cli": "node cli/launcher.mjs",
"docker:build": "docker build -t mbtq-ai-platform .",
"docker:run": "docker-compose up -d",
"docker:stop": "docker-compose down",
"specs:validate": "node specs/registries/scripts/validate-specs.mjs",
"specs:index": "node specs/registries/scripts/build-index.mjs",
"specs:docs": "node specs/registries/scripts/generate-architecture-docs.mjs"
},
"dependencies": {
"@ai-sdk/groq": "latest",
"@ai-sdk/react": "^2.0.106",
"@auth/core": "latest",
"@neondatabase/serverless": "latest",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@types/bcryptjs": "^2.4.6",
"ai": "latest",
"bcryptjs": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"next": "16.2.6",
"next-auth": "latest",
"next-themes": "^0.4.6",
"nodemailer": "latest",
"react": "^19",
"react-dom": "^19",
"rss-parser": "^3.13.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "latest"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.16",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"postcss": "^8.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"keywords": [
"generative-ai",
"sign-language",
"accessibility",
"deaf-community",
"asl-translation",
"bsl-translation",
"machine-learning",
"docker",
"microservices",
"nextjs",
"typescript"
],
"author": "Pinky <pinky@signlanguageai.com>",
"license": "MIT"
}