-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.13 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
45
46
47
{
"name": "storage-worker",
"version": "2.1.1",
"description": "📦 Cloudflare worker for my personal storage",
"author": {
"email": "hi@338.rocks",
"name": "Barış DEMİRCİ",
"url": "https://338.rocks"
},
"private": true,
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/storage"
},
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler publish",
"format": "prettier --write .",
"lint": "eslint --max-warnings=0 . && prettier --check .",
"update": "taze latest -w"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230115.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-typescript": "^3.0.0",
"miniflare": "^2.11.0",
"prettier": "^2.8.4",
"taze": "^0.8.5",
"typescript": "^4.9.5",
"wrangler": "^2.9.1"
},
"dependencies": {
"@supabase/supabase-js": "^2.7.1",
"sidra": "^0.1.7"
}
}