-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 1.04 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
{
"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"
},
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy",
"lint": "eslint --ignore-path .gitignore ./src && prettier --check ./src",
"check": "tsc --noEmit",
"format": "prettier --write .",
"update": "pnpm update -i -L -r"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240512.0",
"@finsweet/eslint-config": "^2.0.7",
"@finsweet/tsconfig": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"wrangler": "^3.57.1"
},
"dependencies": {
"hono": "^4.3.10"
}
}