-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "samvaad",
"version": "1.0.0",
"private": true,
"description": "Samvaad - A human-centered AI platform that creates a secure digital twin for personalized learning and advocacy. Built for Microsoft Imagine Cup.",
"author": "Samvaad Team",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/samvaad.git"
},
"keywords": [
"ai",
"cognitive-twin",
"learning",
"advocacy",
"accessibility",
"azure-ai",
"imagine-cup",
"education",
"assistive-technology"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "NEXT_DISABLE_ESLINT=1 NEXT_DISABLE_TYPECHECK=1 next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "oxlint",
"type-check": "tsc --noEmit",
"check-all": "npm run lint & npm run type-check & wait",
"seed:demo": "node scripts/seed-demo.js"
},
"dependencies": {
"@supabase/ssr": "^0.6.1",
"lucide-react": "^0.562.0",
"next": "15.5.7",
"posthog-js": "^1.270.1",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@supabase/supabase-js": "^2.90.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"oxlint": "^1.12.0",
"postcss": "^8",
"supabase": "2.34.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"pnpm": {
"onlyBuiltDependencies": [
"unrs-resolver"
],
"peerDependencyRules": {
"allowAny": [
"supabase"
]
}
}
}