-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "full-stack-agent-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev --hostname 0.0.0.0 --port 3000",
"app:rebuild": "node scripts/rebuild-app.mjs",
"trainer:onboarding": "node scripts/save-onboarding.mjs",
"trainer:checkin": "node scripts/log-checkin.mjs",
"prestart": "npm run build",
"start": "pm2-runtime start ecosystem.config.cjs",
"start:web": "node server.js",
"start:daemon": "pm2 start ecosystem.config.cjs",
"pm2:reload": "pm2 reload ecosystem.config.cjs --update-env",
"pm2:stop": "pm2 delete full-stack-agent-starter",
"pm2:logs": "pm2 logs full-stack-agent-starter --lines 100"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"better-sqlite3": "^12.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"next": "^15.3.1",
"pm2": "^6.0.8",
"postcss": "^8.5.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"ws": "^8.20.0"
}
}