-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 940 Bytes
/
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
{
"name": "daily-report-notification-bot",
"version": "0.1.0",
"description": "Notification Bot for Notion's daily reports for Slack",
"repository": "[email protected]/codefox-inc/daily-report",
"main": "index.js",
"author": "codefox-inc",
"license": "MIT",
"devDependencies": {
"@types/luxon": "^3.0.1",
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"scripts": {
"start": "functions-framework --source=dist --target=exec",
"lint": "gts lint",
"clean": "gts clean",
"build": "npx tsc",
"fix": "gts fix",
"postbuild": "cp ./package.json dist/ && cp ./yarn.lock dist/",
"prestart": "yarn run build"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.1.2",
"@notionhq/client": "^2.2.0",
"@slack/web-api": "^6.7.2",
"dotenv": "^16.0.2",
"luxon": "^3.0.3",
"slack-block-builder": "^2.6.0"
}
}