-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 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
{
"name": "podverse-serverless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node --import tsx -r dotenv/config src/dev.ts",
"prebuild": "rimraf dist && mkdir dist",
"build": "esbuild src/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
"postbuild": "cd dist && zip -r index.zip index.js*"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.129",
"@types/aws-serverless-express": "^3.3.9",
"@types/koa": "^2.13.12",
"@types/koa__cors": "^4.0.3",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-mount": "^4.0.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"rimraf": "^5.0.5",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.1",
"aws-serverless-express": "^3.4.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-mount": "^4.0.0",
"koa-mw-logger": "^1.7.5",
"zod": "^3.22.4"
}
}