-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"private": "true",
"license": "MIT",
"scripts": {
"start": "sst start",
"deploy": "sst deploy && yarn run export-env",
"remove": "sst remove",
"test": "jest --setupFiles dotenv/config",
"export-env": "esr ./scripts/export-env.ts",
"tail-eventbridge": "esr ./scripts/tail-eventbridge.ts"
},
"devDependencies": {
"@aws-sdk/client-sqs": "3.43.0",
"@aws-sdk/client-ssm": "3.43.0",
"@serverless-stack/cli": "0.54.4",
"@serverless-stack/resources": "0.54.4",
"@tsconfig/node14": "1.0.1",
"@types/aws-lambda": "8.10.85",
"@types/cross-spawn": "6.0.2",
"@types/faker": "5.5.9",
"@types/node": "16.11.10",
"@types/node-fetch": "2.5.12",
"async-wait-until": "2.0.9",
"cross-spawn": "7.0.3",
"esbuild-runner": "2.2.1",
"faker": "5.5.3",
"lumigo-cli": "0.48.4",
"node-fetch": "2.6.6",
"typescript": "4.5.2",
"yargs": "17.2.1"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.43.0",
"@aws-sdk/client-eventbridge": "3.43.0",
"@aws-sdk/lib-dynamodb": "3.43.0",
"zod": "3.11.6"
},
"eslintConfig": {
"extends": [
"serverless-stack"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"jest": {
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
},
"transform": {
"\\.ts$": "esbuild-runner/jest"
},
"setupFilesAfterEnv": [
"<rootDir>/src/testing/custom-matchers/index.ts"
]
}
}