-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "aws-esbuild-typescript",
"version": "0.2.0",
"description": "Boilerplate for Serverless.com framework",
"engines": {
"node": ">=22.11 <23"
},
"scripts": {
"test": "npm run lint",
"lint": "npm run prettier:fix && npm run ts:check && npm run eslint:check",
"ts:check": "npx tsc --noEmit",
"eslint:fix": "npx eslint src --ext ts,js --fix",
"eslint:check": "npx eslint src --ext ts,js",
"prettier:fix": "npx prettier --write '**/*.{ts,js,json,yml,yaml,md}'",
"deploy": "npm run lint && sls -s production deploy",
"dev": "npm run lint && sls deploy"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@aws-sdk/types": "3.731.0",
"@serverless/typescript": "3.38.0",
"@tsconfig/node20": "20.1.4",
"@types/aws-lambda": "8.10.147",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"prettier": "3.4.2",
"serverless": "4.4.19",
"serverless-deployment-bucket": "1.6.0",
"typescript": "5.7.3"
},
"dependencies": {
"@aws-lambda-powertools/logger": "2.13.0"
}
}