-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "paymug-app",
"version": "0.1.12",
"private": true,
"packageManagerx": "npm@10.9.2",
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/generate-runtime-migrations.mjs && node scripts/write-paymug-build-info.mjs",
"build": "opennextjs-cloudflare build",
"build:next": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "wrangler d1 migrations apply DB --remote --config wrangler.jsonc && opennextjs-cloudflare deploy",
"deploy:full": "npm run build && npm run deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"db:generate": "drizzle-kit generate",
"dbml": "wrangler d1 migrations apply DB --local --config wrangler.jsonc",
"dbmr": "wrangler d1 migrations apply DB --remote --config wrangler.jsonc",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@editorjs/editorjs": "^2.31.6",
"@editorjs/header": "^2.8.9",
"@editorjs/image": "^2.10.3",
"@editorjs/list": "^2.0.9",
"@editorjs/underline": "^1.2.1",
"@opennextjs/cloudflare": "^1.19.9",
"@phosphor-icons/react": "^2.1.10",
"bcryptjs": "^3.0.3",
"chart.js": "^4.5.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"jose": "^6.2.4",
"next": "16.2.11",
"react": "^19.1.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.1.7",
"sanitize-html": "^2.17.6",
"server-only": "^0.0.1",
"uuid": "^14.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.19.43",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.7",
"@types/sanitize-html": "^2.16.1",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.11",
"tailwindcss": "^4",
"typescript": "^5.7.4",
"wrangler": "^4.115.0"
}
}