-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "tdc-future-2022-nodejs-aws-lambda",
"version": "1.0.0",
"description": "Repositório utilizado no evento TDC Future 2022 com o tema \"Criando uma API serverless usando AWS Lambda e Node.js com TypeScript e Express.js\".",
"homepage": "https://github.com/rodrigokamada/tdc-future-2022-nodejs-aws-lambda#readme",
"author": "Rodrigo Kamada <[email protected]> (https://github.com/rodrigokamada)",
"license": "MIT",
"keywords": [
"api",
"aws",
"expressjs",
"lambda",
"nodejs",
"serverless",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigokamada/tdc-future-2022-nodejs-aws-lambda.git"
},
"bugs": {
"url": "https://github.com/rodrigokamada/tdc-future-2022-nodejs-aws-lambda/issues"
},
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc"
},
"dependencies": {
"express": "^4.18.2",
"serverless-http": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}