-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 884 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 884 Bytes
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
{
"name": "nodejs-aws-lambda",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/rodrigokamada/nodejs-aws-lambda#readme",
"author": "Rodrigo Kamada <rodrigo@kamada.com.br> (https://github.com/rodrigokamada)",
"license": "MIT",
"keywords": [
"api",
"aws",
"expressjs",
"lambda",
"nodejs",
"serverless",
"typescript"
],
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigokamada/nodejs-aws-lambda.git"
},
"bugs": {
"url": "https://github.com/rodrigokamada/nodejs-aws-lambda/issues"
},
"dependencies": {
"express": "^4.18.2",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}