-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.3 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "os-contribution-slack-bot",
"version": "0.0.1",
"description": "",
"scripts": {
"cdk": "cdk",
"bootstrap": "cdk bootstrap --force --qualifier ossi-bot --toolkit-stack-name ossi-bot-cdk-toolkit-stack --bootstrap-bucket-name ossi-bot-bootstrap-assets --verbose",
"build": "tsc --build",
"lint": "tslint --fix \"src/**/*.ts\" --project tsconfig.json",
"test": "jest --runInBand --config jest.config.unit.js",
"tsc": "tsc"
},
"author": "Juho Friman <juho.friman@solita.fi>",
"license": "MIT",
"devDependencies": {
"@aws-sdk/types": "^3.664.0",
"@types/aws-lambda": "^8.10.145",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.13",
"@types/node": "^20",
"aws-cdk": "^2.162.1",
"esbuild": "0.25.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"ts-jest": "^29.2.5",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.899.0",
"@aws-sdk/client-dynamodb": "^3.668.0",
"@aws-sdk/client-lambda": "^3.668.0",
"@aws-sdk/client-s3": "^3.668.0",
"@aws-sdk/client-secrets-manager": "^3.668.0",
"@aws-sdk/cloudfront-signer": "^3.901.0",
"@aws-sdk/lib-dynamodb": "^3.668.0",
"@aws-sdk/s3-request-presigner": "^3.668.0",
"@slack/web-api": "^7.6.0",
"aws-cdk-lib": "^2.162.1",
"aws-sdk": "^2.1623.0",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"form-data": "^4.0.1",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"source-map-support": "^0.5.21",
"xlsx": "^0.18.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/out/",
"/integration/types/",
"/.build/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"."
],
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text",
"html"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}