-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.5 KB
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
{
"name": "@interrobangc/slack-ops-aws",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"workspaces": [
"packages/custom-lambda/*",
"packages/lambda/*"
],
"devDependencies": {
"@aws-sdk/client-ec2": "^3.379.1",
"@aws-sdk/client-lambda": "^3.379.1",
"@aws-sdk/client-sqs": "^3.379.1",
"@slack/bolt": "^3.13.2",
"@tsconfig/node18": "^18.2.0",
"@types/aws-lambda": "^8.10.119",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc -b --verbose",
"start": "run-s start:localstack",
"start:localstack": "run-s localstack:bootstrap",
"docker:build": "npm run docker:build --workspaces --if-present",
"docker:compose:down": "docker compose -p slack-ops-aws down",
"docker:compose:logs": "docker compose -p slack-ops-aws logs -f",
"docker:compose:up": "run-s docker compose:*:up",
"docker:compose:packages:up": "npm run docker compose:up --workspaces --if-present",
"docker:compose:localstack:up": "docker compose -p slack-ops-aws up -d",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"localstack:apply:ssm": "cd terraform/environments/local/ssm && make apply tf_args='-auto-approve'",
"localstack:init:ssm": "cd terraform/environments/local/ssm && make init",
"localstack:plan": "cd terraform/environments/local && make plan",
"localstack:apply": "cd terraform/environments/local && make apply tf_args='-auto-approve'",
"localstack:init": "cd terraform/environments/local && make init",
"localstack:destroy": "cd terraform/environments/local && make destroy",
"localstack:bootstrap": "run-s docker:compose:localstack:up localstack:apply:ssm localstack:apply",
"test": "run-p test:unit test:service test:e2e",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:e2e": "run-s start:localstack test:e2e:run",
"test:e2e:run": "npm run test:e2e --workspaces --if-present",
"test:service": "npm run test:service --workspaces --if-present",
"test:unit": "npm run test:unit --workspaces --if-present",
"ngrok": "ngrok http 4566"
}
}