-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "test-stack-orchestrator",
"version": "1.0.0",
"scripts": {
"deploy": "serverless deploy",
"lint:fix": "yarn linter-base-config --fix",
"lint:fix-all": "yarn lint:fix .",
"linter-base-config": "eslint --ext=js,ts",
"remove": "serverless remove",
"sls:info": "serverless info --verbose",
"test:all": "yarn test:linter && yarn test:type && yarn test:unit",
"test:linter": "yarn linter-base-config .",
"test:type": "tsc --noEmit",
"test:unit": "jest"
},
"dependencies": {
"@middy/core": "^2.5.3",
"@middy/http-error-handler": "^2.5.3",
"@middy/http-json-body-parser": "^2.5.3",
"@middy/ssm": "^2.5.3",
"@middy/validator": "^2.5.3",
"aws-sdk": "^2.1046.0",
"dynamodb-toolbox": "^0.4.0-alpha.1",
"esbuild": "^0.14.5",
"http-errors": "^1.8.0",
"http-status-codes": "^2.1.4",
"json-schema-to-ts": "^1.6.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@aws-cdk/aws-dynamodb": "1.134.0",
"@aws-cdk/core": "1.134.0",
"@serverless/typescript": "^2.68.0",
"@types/aws-lambda": "^8.10.119",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"jest-runner-groups": "^2.1.0",
"prettier": "^2.4.1",
"serverless": "^2.68.0",
"serverless-esbuild": "^1.21.1",
"serverless-iam-roles-per-function": "^3.2.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"author": "CorentinDoue <[email protected]>",
"license": "MIT"
}