forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.71 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
{
"name": "aws-lambda-powertools-typescript",
"version": "0.0.1",
"description": "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more.",
"workspaces": [
"packages/commons",
"packages/logger",
"packages/metrics",
"packages/tracer",
"packages/parameters",
"packages/idempotency",
"packages/batch",
"packages/testing",
"docs/snippets",
"layers",
"examples/cdk",
"examples/sam"
],
"scripts": {
"init-environment": "husky install",
"test": "npm t -ws",
"test:parallel": "lerna exec --no-bail --no-sort --stream --concurrency 8 -- npm run test",
"test:e2e": "npm run test:e2e -ws",
"test:e2e:parallel": "lerna exec --no-bail --no-sort --stream --concurrency 8 -- npm run test:e2e",
"commit": "commit",
"setup-local": "npm ci && npm run build && npm run init-environment",
"build": "npm run build -ws",
"docs-website-build-run": "npm run docs-buildDockerImage && npm run docs-runLocalDocker",
"docs-buildDockerImage": "docker build -t powertools-typescript/docs ./docs/",
"docs-runLocalDocker": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs powertools-typescript/docs",
"docs-api-build-run": "npm run docs-generateApiDoc && npx live-server api",
"docs-generateApiDoc": "typedoc .",
"docs-runLocalApiDoc": "npx live-server api",
"postpublish": "git restore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
},
"keywords": [],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
"devDependencies": {
"@middy/core": "^4.7.0",
"@types/aws-lambda": "^8.10.131",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.6",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16"
}
}