-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "local-ai",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 3100 --turbopack",
"build": "next build && node scripts/postbuild.js",
"build:standalone": "npm run build",
"start": "next start --port 3100",
"start:standalone": "node scripts/start-standalone.js",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:restart": "pm2 restart local-ai",
"pm2:stop": "pm2 stop local-ai",
"pm2:logs": "pm2 logs local-ai",
"setup:hooks": "bash scripts/setup-hooks.sh",
"postinstall": "npm run setup:hooks"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@swc/helpers": "^0.5.19",
"better-sqlite3": "^11.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^16.0.0",
"next-intl": "^4.8.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0"
}
}