-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
123 lines (123 loc) · 3.2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "mbc-cqrs-serverless",
"version": "1.0.0",
"description": "CQRS by AWS serverless",
"main": "index.js",
"scripts": {
"build": "lerna run build",
"release": "lerna publish --no-private",
"deploy": "npm run build && npm run release",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:cov": "NODE_ENV=test jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mbc-net/mbc-cqrs-serverless.git"
},
"keywords": [
"mbc",
"cqrs",
"serverless",
"framework",
"event-driven",
"backend",
"aws",
"lambda",
"ecs",
"fargate",
"step-functions",
"sqs",
"typpescript"
],
"author": "Murakami Business Consulting, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbc-net/mbc-cqrs-serverless/issues"
},
"homepage": "https://mbc-cqrs-serverless.mbc-net.com/",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.478.0",
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/client-sesv2": "^3.478.0",
"@aws-sdk/client-sfn": "^3.478.0",
"@aws-sdk/client-sns": "^3.478.0",
"@aws-sdk/client-sqs": "^3.478.0",
"@aws-sdk/credential-provider-node": "^3.451.0",
"@aws-sdk/lib-storage": "^3.478.0",
"@aws-sdk/s3-request-presigner": "^3.478.0",
"@aws-sdk/signature-v4": "^3.374.0",
"@aws-sdk/util-create-request": "^3.468.0",
"@aws-sdk/util-dynamodb": "^3.360.0",
"@golevelup/ts-jest": "^0.5.5",
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.3.0",
"@smithy/util-stream": "^3.1.6",
"@types/aws-lambda": "^8.10.130",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"@types/supertest": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"aws-sdk-client-mock": "^4.0.1",
"aws-sdk-client-mock-jest": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"lerna": "^8.1.8",
"nestjs-spelunker": "^1.3.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/core",
"packages/sequence",
"packages/task",
"packages/cli",
"packages/ui-setting"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "packages",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "report",
"outputName": "unit.xml"
}
]
]
},
"overrides": {
"xml2js": "^0.6.2",
"trim-newlines": "^3.0.1",
"jsonwebtoken": "^9.0.2"
}
}