-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.62 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
{
"name": "@mastondzn/cdn",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.6.5",
"description": "Personal image/file uploader, built with Cloudflare Workers & R2.",
"author": {
"name": "Maston",
"url": "https://github.com/mastondzn"
},
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/mastondzn/cdn.git"
},
"scripts": {
"dev": "wrangler dev --port 3002 --tsconfig tsconfig.worker.json",
"start": "pnpm dev",
"build": "wrangler deploy --dry-run --outdir=dist --tsconfig=tsconfig.worker.json",
"deployy": "wrangler deploy --tsconfig tsconfig.worker.json",
"types": "wrangler types",
"format": "prettier --write .",
"format:check": "prettier -c .",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.worker.json",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply cdn --local",
"db:migrate:remote": "drizzle-kit migrate"
},
"dependencies": {
"@hono/standard-validator": "^0.1.2",
"drizzle-orm": "^0.40.0",
"hono": "^4.7.4",
"mrmime": "^2.0.1",
"nanoid": "^5.1.3",
"xxhash-wasm": "^1.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@mastondzn/eslint": "^1.2.0",
"@types/node": "^22.13.11",
"drizzle-kit": "^0.30.5",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"wrangler": "^4.1.0"
}
}