-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.45 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": "lambda-with-rds-example",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/robertLichtnow/lambda-with-rds-example",
"author": "Matheus Robert Lichtnow <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/infrastructure/http/index.ts",
"build": "rm -rf dist && sh ./scripts/create-env-file.sh && tsc && tscpaths -p tsconfig.json -s ./ -o ./dist",
"postbuild": "cp package.json yarn.lock .env ormconfig.js dist && cd dist && yarn install --prod",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.11",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/aws-lambda": "^8.10.85",
"@types/cors": "^2.8.12",
"@vendia/serverless-express": "^4.5.2",
"add": "^2.0.6",
"aws-lambda": "^1.0.7",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"inversify": "^6.0.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"typeorm": "^0.2.41",
"yarn": "^1.22.17"
}
}