-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.55 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
48
49
50
51
52
53
54
{
"name": "solid-service-api",
"version": "1.0.5",
"main": "dist/worker.js",
"description": "Source code that powers api.solidjs.com.",
"private": true,
"contributors": [
{
"name": "David Di Biase (davedbase)",
"url": "https://github.com/davedbase"
},
{
"name": "Christian Hansen (ch99q)",
"url": "https://github.com/ch99q"
}
],
"scripts": {
"dev": "miniflare --live-reload --watch --verbose",
"build": "tsc && vpc build -m src/worker.ts dist/worker.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{ts,css,json,md}'",
"deploy": "wrangler publish dist/worker.js"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@miniflare/kv": "^2.5.0",
"@types/cookie": "^0.5.1",
"@types/itty-router-extras": "^0.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/uuid": "^8.3.4",
"miniflare": "^2.5.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3",
"vite": "^2.9.12",
"vite-plugin-cloudflare": "^0.1.3"
},
"dependencies": {
"@amoutonbrady/lz-string": "^0.0.1",
"@octokit/core": "^3.6.0",
"@solid.js/solidex": "^1.0.0",
"@supabase/supabase-js": "^1.35.3",
"@tsndr/cloudflare-worker-jwt": "^1.4.2",
"cheerio": "^1.0.0-rc.11",
"cookie": "^0.5.0",
"fetch": "^1.1.0",
"itty-router": "^2.6.6",
"itty-router-extras": "^0.4.2",
"metascraper": "^5.29.8",
"octokit-plugin-create-pull-request": "^3.11.0",
"uuid": "^8.3.2",
"wrangler": "^2.1.10",
"zod": "^3.17.3"
}
}