-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 836 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 836 Bytes
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
{
"name": "slackbot",
"bin": {
"cdk-typescript": "bin/cdk-typescript.js"
},
"scripts": {
"build": "tsc",
"build:esbuild": "rm -rf dist && esbuild ./src/* --bundle --minify --sourcemap --platform=node --target=node18 --outdir=dist",
"format": "biome format --write ./src ./infra ./bin",
"cdk": "cdk",
"dev": "node --env-file .env test.js"
},
"engines": {
"node": "20.*"
},
"devDependencies": {
"@biomejs/biome": "1.3.1",
"@types/aws-lambda": "^8.10.125",
"@types/node": "^20.8.10",
"aws-cdk": "^2.104.0",
"aws-cdk-lib": "^2.104.0",
"constructs": "^10.3.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@slack/bolt": "^3.14.0",
"date-fns": "^2.30.0",
"zod": "^3.22.4"
}
}