-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"private": true,
"name": "comment-worker",
"version": "0.0.3",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore . --ext .js --ext .jsx --ext .ts --ext .tsx",
"format": "prettier --write '**/*.{js,css,json,md}'",
"dev": "wrangler dev",
"release": "standard-version -a"
},
"author": "ZaneChua",
"contributors": [
{
"name": "Zane J. Chua",
"email": "hi@zanechua.com",
"url": "https://zanechua.com"
}
],
"license": "MIT",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"hono": "^3.5.8",
"js-base64": "^3.7.5",
"lodash": "^4.17.21",
"universal-github-app-jwt": "^2.0.5",
"yaml": "^2.3.2",
"zod": "^3.22.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"wrangler": "^3.7.0"
}
}