-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.21 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": "gh-federation",
"version": "4.0.1",
"repository": "[email protected]:arkedge/gh-federation.git",
"author": "Hidekazu Kobayashi <[email protected]>",
"license": "MIT",
"scripts": {
"build:vite": "esbuild src/index.ts --bundle --format=cjs --platform=node --outfile=dist/app.js",
"build": "run-s build:vite",
"dev:esbuild": "yarn build:vite -- --watch",
"dev:lambda": "aws-lambda-rie npx aws-lambda-ric dist/app.handler",
"dev": "run-p dev:*",
"typecheck": "tsc",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --format stylish",
"lint": "run-p lint:*",
"fix:prettier": "yarn lint:prettier --write",
"fix:eslint": "yarn lint:eslint --fix",
"fix": "run-s fix:eslint fix:prettier"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.106",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "^0.19.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"npm-run-all2": "5.0.0",
"prettier": "3.2.5",
"typescript": "5.3.3"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.180.0",
"@octokit/auth-app": "^6.0.0"
}
}