-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.45 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "livets-stemme",
"version": "3.0.0",
"description": "Digital minnearkiv for eldre brukere - Bevar livshistorier med AI-assistanse",
"private": false,
"keywords": [
"memory-archive",
"elderly-users",
"norwegian",
"voice-recording",
"ai-assistance",
"family-sharing",
"accessibility",
"digital-heritage"
],
"author": {
"name": "Livets Stemme Team",
"email": "kontakt@livetsstemme.no",
"url": "https://livetsstemme.no"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deanmartian/livets-stemme.git"
},
"bugs": {
"url": "https://github.com/deanmartian/livets-stemme/issues"
},
"homepage": "https://same-qwc8draomtn-latest.netlify.app",
"scripts": {
"dev": "next dev -H 0.0.0.0 --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"prepare": "git config core.hooksPath .githooks || true",
"git:init": "git init && git add . && git commit -m \"🎉 Initial commit: Livets Stemme v3.0\"",
"git:push": "git branch -M main && git remote add origin https://github.com/deanmartian/livets-stemme.git && git push -u origin main",
"setup:production": "./scripts/setup-production.sh",
"deploy:vercel": "vercel",
"deploy:vercel:prod": "vercel --prod",
"preview": "vercel dev",
"vercel:env": "vercel env pull .env.local",
"vercel:build": "vercel build",
"vercel:deploy": "vercel --prod"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@supabase/supabase-js": "^2.53.0",
"date-fns": "^4.1.0",
"elevenlabs": "^0.8.2",
"lucide-react": "^0.536.0",
"next": "15.3.2",
"openai": "^4.67.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.62.0",
"stripe": "^16.12.0",
"uuid": "^11.1.0",
"zod": "^4.0.15"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "15.3.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}