-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "cave-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint",
"create-api": "node --env-file=.env.local ./scripts/create-api.mjs ",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev .vercel/output/static",
"deploy": "npm run pages:build && wrangler pages deploy .vercel/output/static",
"build-cf-types": "wrangler types --env-interface CloudflareEnv env.d.ts"
},
"dependencies": {
"@auth/d1-adapter": "^1.4.2",
"@blocknote/core": "^0.15.4",
"@blocknote/mantine": "^0.15.4",
"@blocknote/react": "^0.15.4",
"@discordjs/rest": "^2.3.0",
"@hapi/nes": "^13.0.1",
"@headlessui/react": "^2.1.2",
"discord-api-types": "^0.37.93",
"jose": "^5.6.3",
"next": "^14.2.5",
"next-auth": "5.0.0-beta.25",
"nextjs-toploader": "^1.6.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-player": "^2.16.0",
"react-toastify": "^10.0.5",
"react-virtuoso": "^4.10.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"vercel": "39.1.1",
"wrangler": "^3.71.0"
}
}