-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 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
{
"name": "discord-api",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev --port 60626",
"start": "wrangler dev --port 60626",
"cf-typegen": "wrangler types src/worker-configuration.d.ts",
"sb:migrate:new": "supabase migration new",
"sb:db:reset": "supabase db reset",
"sb:codegen": "supabase gen types typescript --local > supabase/types.d.ts",
"lint": "eslint --quiet --report-unused-disable-directives .",
"prettier": "prettier --check '*.{json,js}' '**/*.{js,ts}'",
"prettier:write": "prettier --write '*.{json,js}' '**/*.{js,ts}'",
"typecheck": "tsc --noEmit",
"watch": "tsc -w"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250620.0",
"@types/bun": "1.3.2",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"eslint": "9.39.1",
"eslint-plugin-inclusive-language": "2.2.1",
"node-loader": "2.1.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.3.0",
"supabase": "2.30.4",
"typescript": "5.8.3",
"wrangler": "4.21.2"
},
"dependencies": {
"@khanacademy/simple-markdown": "0.13.20",
"@supabase/supabase-js": "2.50.3",
"discord-api-types": "0.38.20",
"discord-markdown-parser": "1.2.0",
"hono": "4.8.3"
},
"description": "Fetch data from the Discord API and save it in the database",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC"
}