forked from xmanrui/OpenClaw-bot-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "openclaw-bot-review",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "cp -f .env.local .next/standalone/.env.local 2>/dev/null; node .next/standalone/server.js",
"deploy": "npm run build && cp -r .next/static .next/standalone/.next/static && cp -r public .next/standalone/public && cp -f .env.local .next/standalone/.env.local && node .next/standalone/server.js"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"mermaid": "^11.14.0",
"next": "^16.0.0",
"postcss": "^8.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0"
}
}