-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
34 lines (34 loc) · 1.92 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
{
"name": "quota-monitor-for-aws",
"version": "6.3.0",
"description": "Quota Monitor for AWS",
"author": "aws-solutions",
"license": "Apache-2.0",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js . --ext .ts",
"precommit": "pre-commit run --all-files",
"prettier-format": "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' --write",
"build:cwPoller": "cd source/lambda/services/cwPoller && npm run build:all",
"build:deploymentManager": "cd source/lambda/services/deploymentManager && npm run build:all",
"build:helper": "cd source/lambda/services/helper && npm run build:all",
"build:preReqManager": "cd source/lambda/services/preReqManager && npm run build:all",
"build:quotaListManager": "cd source/lambda/services/quotaListManager && npm run build:all",
"build:reporter": "cd source/lambda/services/reporter && npm run build:all",
"build:slackNotifier": "cd source/lambda/services/slackNotifier && npm run build:all",
"build:snsPublisher": "cd source/lambda/services/snsPublisher && npm run build:all",
"build:taRefresher": "cd source/lambda/services/taRefresher && npm run build:all",
"build:utilsLayer": "cd source/lambda/utilsLayer && npm run build:all",
"build:all": "npm run build:utilsLayer && npm run build:cwPoller && npm run build:deploymentManager && npm run build:helper && npm run build:preReqManager && npm run build:quotaListManager && npm run build:reporter && npm run build:slackNotifier && npm run build:snsPublisher && npm run build:taRefresher",
"test": "cd ./deployment && chmod +x run-unit-tests.sh && ./run-unit-tests.sh"
},
"devDependencies": {
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"typescript": "^5.0.2"
}
}