-
Notifications
You must be signed in to change notification settings - Fork 655
/
Copy pathpackage.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "@aws-github-runner/aws-powertools-util",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"license": "MIT",
"scripts": {
"start": "ts-node-dev src/local.ts",
"test": "NODE_ENV=test nx test",
"test:watch": "NODE_ENV=test nx test --watch",
"lint": "eslint src",
"watch": "ts-node-dev --respawn --exit-child src/local.ts",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"all": "yarn build && yarn format && yarn lint && yarn test"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.14.0",
"body-parser": "^2.2.0"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.18.0",
"@aws-lambda-powertools/metrics": "^2.18.0",
"@aws-lambda-powertools/tracer": "^2.18.0",
"aws-lambda": "^1.0.7"
},
"nx": {
"includedScripts": [
"format",
"format-check",
"lint",
"start",
"watch",
"all"
]
}
}