-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "notion-bot",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"watch": [
"*.ts"
],
"exec": "ts-node ./app.ts",
"scripts": {
"start": "nodemon -x ts-node app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"copy-files": "cp -r src/public/ dist/public/ && cp -r src/views/ dist/views/",
"build": "tsc --build",
"deploy:dev": "NODE_ENV=development sls deploy --verbose",
"deploy:production": "NODE_ENV=production sls deploy --stage production --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@notionhq/client": "^2.2.14",
"@slack/bolt": "^3.17.1",
"@slack/web-api": "^7.0.1",
"axios": "^1.6.3",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"serverless-domain-manager": "^7.3.4"
},
"devDependencies": {
"@types/node": "^20.10.4",
"nodemon": "^3.0.2",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}