-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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": "pullsize",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.10.0"
},
"packageManager": "[email protected]",
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"fmt": "prettier --cache --ignore-unknown --write .",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/.eslintcache .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,cjs,mjs,ts}": "eslint"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@octokit/webhooks-types": "^7.3.2",
"@types/picomatch": "^2.3.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.11",
"itty-router": "^4.0.27",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.0.4",
"typescript-eslint": "^7.0.1",
"wrangler": "^3.0.0"
},
"dependencies": {
"@cfworker/sentry": "^2.0.0",
"@octokit/auth-app": "^6.0.3",
"js-toml": "^1.0.0",
"octokit": "^3.1.2",
"parse-git-diff": "^0.0.15",
"picomatch": "^4.0.1",
"zod": "^3.22.4"
}
}