-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
54
55
56
57
58
59
{
"name": "all-valid-words",
"version": "1.0.0",
"main": "src/handler.js",
"license": "MIT",
"scripts": {
"deploy": "sls deploy --stage production",
"lint": "eslint --ext .js,.ts ./src",
"lint:types": "tsc --noEmit",
"tail:hello": "serverless logs --function hello --tail",
"test": "jest --watch",
"watch:hello": "serverless invoke local --watch --function hello --path fixtures/event.json",
"watch:warm": "serverless invoke local --watch --function hello --path fixtures/scheduled.json",
"prepare": "husky"
},
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"@types/aws-lambda": "8.10.147",
"@types/memoizee": "0.4.11",
"@types/node": "22.10.7",
"@types/wordfilter": "0.2.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"serverless": "3.40.0",
"serverless-esbuild": "1.54.6",
"typescript": "5.7.3"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "3.731.1",
"@aws-sdk/client-dynamodb": "3.731.1",
"@aws-sdk/client-s3": "3.732.0",
"@aws-sdk/client-secrets-manager": "3.731.1",
"@aws-sdk/client-sqs": "3.731.1",
"@aws-sdk/util-dynamodb": "3.731.1",
"@js-joda/core": "5.6.4",
"memoizee": "0.4.17",
"tslib": "2.8.1",
"wordfilter": "0.2.6"
},
"lint-staged": {
"*.{js,ts,css,md,json,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --ext .js,.ts"
]
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}