-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "aws-lambda-billing-slack-notification",
"description": "AWS 当月利用料金 Slack 通知スクリプト",
"private": true,
"scripts": {
"check": "tsc --noEmit",
"build": "rm -rf ./dist && tsc",
"lint:eslint": "eslint ./src",
"lint:prettier": "prettier ./src ./serverless.yml --list-different",
"lint": "npm run lint:eslint && npm run lint:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "prettier ./src ./serverless.yml --write",
"fix": "npm run fix:eslint && npm run fix:prettier",
"deploy": "serverless deploy"
},
"dependencies": {
"@aws-sdk/client-cost-explorer": "^3.23.0",
"@slack/webhook": "^6.0.0",
"@types/aws-lambda": "^8.10.81",
"@types/node": "^15.14.3",
"axios": "^0.21.1",
"dayjs": "^1.10.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.3.2",
"serverless": "^2.52.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14"
}
}