-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "finsweet-reverse-proxy",
"version": "2.0.0",
"description": "The reverse proxy used for all finsweet.com sites.",
"author": {
"name": "Finsweet",
"url": "https://www.finsweet.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finsweet/reverse-proxy.git"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"cf-typegen": "wrangler types",
"lint": "eslint ./src && prettier --check ./src",
"lint:fix": "eslint ./src --fix && pnpm format",
"check": "pnpm cf-typegen && tsc --noEmit",
"test": "vitest",
"format": "prettier --write ./src",
"update": "pnpm update -i -L -r"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.2",
"@eslint/js": "10.0.1",
"@finsweet/eslint-config": "3.0.4",
"@finsweet/tsconfig": "1.4.2",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "13.0.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "^4.1.3",
"wrangler": "4.81.0"
},
"dependencies": {
"hono": "4.12.12"
}
}