-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "microservices-testing-workshop",
"version": "3.0.0",
"description": "Microservices testing workshop",
"main": "index.js",
"scripts": {
"deploy": "npx sls deploy",
"lint": "npx eslint './bin/**/*.ts' --quiet --fix",
"dev": "npx ws -d src/app",
"docs": "npx arkit && npx typedoc --entryPointStrategy expand src && npx quicktype src/microservices/order/contracts/OrderDto.ts -o src/microservices/database/frameworks/QuicktypeOrder.ts --runtime-typecheck",
"install:all": "npm install && npm install -g typescript && npm run install:codecept",
"install:codecept": "npx create-codeceptjs . && npx codeceptjs init",
"test": "npm run test:jest && npm run test:system && npm run test:e2e",
"test:jest": "jest __tests__ --collectCoverage",
"test:system": "ts-node __tests__/system/index.ts",
"test:e2e": "codeceptjs run --steps",
"codecept:ui": "codecept-ui --app"
},
"keywords": [
"serverless",
"lambda",
"aws"
],
"author": "Mikael Vesavuori",
"license": "MIT",
"devDependencies": {
"@aws-sdk/types": "3",
"@babel/preset-env": "7",
"@babel/preset-typescript": "7",
"@codeceptjs/configure": "1",
"@codeceptjs/examples": "1",
"@codeceptjs/ui": "1",
"@types/aws-lambda": "8",
"@types/faker": "5",
"@types/jest": "29",
"@types/node": "22",
"@types/node-fetch": "2",
"@types/uuid": "10",
"@typescript-eslint/eslint-plugin": "5",
"@typescript-eslint/parser": "5",
"arkit": "1",
"babel-loader": "8",
"codeceptjs": "3",
"esbuild": "0",
"eslint": "8",
"eslint-config-prettier": "8",
"eslint-plugin-prettier": "4",
"faker": "5",
"jest": "29",
"local-web-server": "5",
"node-fetch": "2",
"playwright": "1",
"prettier": "3",
"quicktype": "23",
"serverless": "3",
"serverless-esbuild": "1",
"serverless-iam-roles-per-function": "3",
"serverless-offline": "12",
"serverless-plugin-typescript": "2",
"ts-jest": "29",
"ts-loader": "9",
"ts-node": "10",
"typedoc": "0",
"typescript": "5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3",
"@aws-sdk/client-eventbridge": "3",
"uuid": "10"
}
}