-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "on-call-bot-serverless",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"test": "jest",
"ngrok": "~/ngrok http 5000",
"serverless": "stage=local npx -c 'serverless offline --stage=local --noPrependStageInUrl --allowCache --httpPort=5000'",
"start-localstack": "src/test/scripts/start-localstack.ts && src/test/scripts/create-secrets.ts",
"serverless-localstack": "stage=local npm run start-localstack && npm run serverless",
"lambda-localstack": "npm run build && npm run start-localstack && npm run deploy-localstack",
"deploy-localstack": "serverless deploy --stage=local --verbose"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"moduleFileExtensions": [
"ts",
"js",
"tsx",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/?(*.)(spec|test).ts?(x)"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-cdk/aws-secretsmanager": "^1.138.1",
"@aws-sdk/client-secrets-manager": "3.46.0",
"@slack/bolt": "^3.8.1",
"@types/aws-lambda": "^8.10.82",
"@types/cross-spawn": "^6.0.2",
"@types/google-spreadsheet": "^3.1.5",
"add": "^2.0.6",
"google-spreadsheet": "^3.2.0",
"moment": "^2.29.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.18.5",
"aws-sdk": "^2.1058.0",
"jest": "^27.4.7",
"jest-config": "^27.4.7",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-offline": "^8.3.1",
"serverless-webpack": "^5.6.0",
"source-map-loader": "^3.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.3.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}