-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 894 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 894 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
34
35
{
"name": "supportslackbot",
"version": "1.0.0",
"description": "",
"main": "dist/src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pnpm install && pnpm tsx ./src/main.ts",
"build": "tsc",
"dev": "pnpm tsx watch ./src/main.ts",
"db:setup": "node db.js setup",
"db:start": "node db.js start",
"db:stop": "node db.js stop",
"db:clean": "node db.js clean",
"db:logs": "node db.js logs"
},
"packageManager": "pnpm@9.0.0",
"author": "",
"license": "ISC",
"dependencies": {
"@slack/bolt": "^3.21.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"pg": "^8.16.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/pg": "^8.16.0"
}
}