-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.48 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
60
61
{
"name": "create-vercel-http-server-handler",
"author": "John L. Armstrong IV",
"module": "dist/create-vercel-http-server-handler.esm.js",
"repository": "[email protected]:jlarmstrongiv/create-vercel-http-server-handler.git",
"version": "1.0.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"@types/aws-lambda": "^8.10.71",
"@types/aws-serverless-express": "^3.3.3",
"@types/express": "^4.17.11",
"@types/get-port": "^4.2.0",
"@types/http-proxy": "^1.17.5",
"@types/query-string": "^6.3.0",
"@types/raw-body": "^2.3.0",
"@types/wait-on": "^5.2.0",
"@vercel/node": "^1.9.0",
"aws-lambda": "^1.0.6",
"husky": "^4.3.8",
"next": "^10.0.6",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"@nestjs/common": "^7.6.7",
"@nestjs/core": "^7.6.7",
"@nestjs/platform-express": "^7.6.7",
"aws-serverless-express": "^3.4.0",
"express": "^4.17.1"
},
"dependencies": {
"get-port": "^5.1.1",
"http-proxy": "^1.18.1",
"raw-body": "^2.4.1",
"query-string": "^6.13.8",
"wait-on": "^5.2.1"
}
}