-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.9 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
{
"name": "aws-serverless-typescript-api",
"version": "1.0.0",
"description": "Serverless aws-nodejs-typescript template",
"main": "serverless.ts",
"scripts": {
"test": "jest",
"upload": "ts-node src/local/upload.ts",
"setup": "ts-node src/local/setup.ts",
"build-fib": " esbuild src/testFunctions/fib/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js && cd dist && zip -r index.zip index.js*"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@aws-sdk/client-apigatewayv2": "^3.379.1",
"@aws-sdk/client-cloudwatch-logs": "^3.342.0",
"@aws-sdk/client-dynamodb": "^3.329.0",
"@aws-sdk/client-lambda": "^3.332.0",
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/client-sns": "^3.328.0",
"@aws-sdk/util-dynamodb": "^3.329.0",
"@middy/core": "^4.5.5",
"@middy/http-error-handler": "^4.5.5",
"@middy/http-json-body-parser": "^3.4.0",
"@middy/validator": "^4.5.5",
"@types/bcryptjs": "^2.4.2",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.1",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"@serverless/typescript": "^3.0.0",
"@types/aws-lambda": "^8.10.71",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.1.3",
"esbuild": "^0.14.11",
"jest": "^29.5.0",
"json-schema-to-ts": "^1.5.0",
"prettier": "^3.0.2",
"serverless": "^3.31.0",
"serverless-esbuild": "^1.23.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}