-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "stackjanitor",
"version": "1.38.0",
"description": "StackJanitor cleans up CloudFormation stacks based on TTL and tags.",
"main": "src/handler.ts",
"private": true,
"author": "Lendi",
"license": "MIT",
"repository": "[email protected]:lendi-au/StackJanitor.git",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf node_modules .serverless lib",
"format": "prettier --write '**/*.{md,json,js,jsx,ts,tsx}'",
"lint:format": "prettier-check '**/*.{md,json,js,jsx,ts,tsx}'",
"test": "jest",
"package": "serverless package",
"deploy": "serverless deploy",
"release": "release-it minor --ci --no-git.requireUpstream"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.485.0",
"@aws-sdk/client-dynamodb": "^3.485.0",
"@aws-sdk/client-lambda": "^3.485.0",
"@aws-sdk/lib-dynamodb": "^3.485.0",
"@aws-sdk/util-dynamodb": "^3.485.0",
"dynamodb-toolbox": "^0.9.2",
"lodash": "^4.17.21",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.16",
"@types/pino": "^5.14.0",
"@types/sinon": "^10.0.2",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"graceful-fs": "^4.2.3",
"husky": "^1.3.1",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"prettier-check": "^2.0.0",
"release-it": "^14.11.7",
"serverless": "^3.34.0",
"serverless-plugin-typescript": "^2.1.5",
"serverless-step-functions": "^3.14.0",
"ts-jest": "^29.1.1",
"ts-loader": "^5.3.3",
"ts-node": "^10.9.2",
"tslint": "^5.12.1",
"typescript": "^5.1.6"
},
"resolutions": {
"**/tar-stream": "^2.0.0",
"**/bl": "^4.0.3"
},
"release-it": {
"github": {
"release": true
}
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}