forked from RyanHirsch/podverse-serverless
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "podverse-serverless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx -r dotenv/config src/dev.ts",
"dev:watch": "nodemon --watch 'src' --watch $(realpath node_modules/podverse-external-services) --watch $(realpath node_modules/podverse-parser) --watch $(realpath node_modules/podverse-shared) -e ts --exec tsx -r dotenv/config src/dev.ts",
"prebuild": "rimraf dist && mkdir dist",
"build": "./esbuild.js",
"postbuild": "cd dist && zip -r index.zip index.js*",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/podverse/podverse-serverless.git"
},
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/podverse/podverse-serverless/issues"
},
"homepage": "https://github.com/podverse/podverse-serverless#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.129",
"@types/aws-serverless-express": "^3.3.9",
"@types/koa": "^2.13.12",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-mount": "^4.0.5",
"@types/koa__cors": "^4.0.3",
"@types/koa__router": "^12.0.4",
"@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",
"nodemon": "^3.0.2",
"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",
"node-fetch": "^3.3.2",
"podcast-partytime": "^4.8.0",
"podverse-orm": "^1.0.0",
"podverse-parser": "^1.0.0",
"podverse-shared": "^4.15.3",
"zod": "^3.22.4"
}
}