-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "infrastructure",
"version": "1.0.0",
"license": "AGPL-3.0",
"private": "true",
"engines": {
"node": ">= 20.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/PRX/Infrastructure.git"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "3.x",
"@aws-sdk/client-cloudfront": "3.x",
"@aws-sdk/client-cloudwatch": "3.x",
"@aws-sdk/client-codebuild": "3.x",
"@aws-sdk/client-codepipeline": "3.x",
"@aws-sdk/client-dynamodb": "3.x",
"@aws-sdk/client-ec2": "3.x",
"@aws-sdk/client-ecs": "3.x",
"@aws-sdk/client-eventbridge": "3.x",
"@aws-sdk/client-kinesis": "3.x",
"@aws-sdk/client-organizations": "3.x",
"@aws-sdk/client-s3": "3.x",
"@aws-sdk/client-sns": "3.x",
"@aws-sdk/client-ssm": "3.x",
"@aws-sdk/client-transfer": "3.x",
"@aws-sdk/middleware-retry": "3.x",
"@aws-sdk/util-retry": "3.x",
"adm-zip": "^0.5.9",
"aws-sdk": "^2.x",
"octokit": "*",
"aws-xray-sdk": "*"
},
"devDependencies": {
"@prettier/plugin-ruby": "*",
"@slack/events-api": "^3",
"@slack/interactive-messages": "^2",
"@slack/web-api": "*",
"@types/aws-lambda": "*",
"aws-sdk-mock": "*",
"basic-ftp": "*",
"dotenv": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-prettier": "*",
"jest": "*",
"prettier": "*",
"typescript": "*",
"yaml-cfn": "*"
},
"scripts": {
"eslint": "eslint",
"prettier": "prettier",
"tsc": "tsc",
"black": "python -m black --check ./",
"flake8": "python -m flake8",
"cfn-lint": "find . -name \"*.yml\" -type f ! -path \"*/node_modules/*\" ! -path \"./.github/*\" -mindepth 2 -print0 | xargs -0 -n1 cfn-lint --ignore-checks E3008 --template",
"test": "npm run cfn-lint && tsc && eslint '**/*.js' && prettier --check '**/*.{js,json,yml}' && npm run black && npm run flake8"
}
}