-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 931 Bytes
/
package.json
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": "vercel-og-nextjs",
"repository": "https://github.com/vercel/examples.git",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js",
"pm2:reload": "pm2 reload ecosystem.config.js",
"pm2:delete": "pm2 delete ecosystem.config.js",
"pm2:logs": "pm2 logs",
"pm2:monit": "pm2 monit"
},
"dependencies": {
"@vercel/kv": "^2.0.0",
"@vercel/og": "^0.6.2",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"next": "latest",
"prom-client": "^15.1.3",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@types/node": "^22.0.1",
"@types/react": "^18.3.3",
"eslint": "^9.8.0",
"turbo": "^1.8.5",
"typescript": "^5.5.4"
}
}