forked from Automattic/breakingbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
40
41
42
43
44
45
46
47
{
"name": "breakingbot",
"description": "Breaking Bot for Woo",
"version": "4.0.0",
"author": "WPVIP, WooCommerce",
"license": "GPL-2.0-or-later",
"scripts": {
"build": "tsc",
"clean": "rimraf dist node_modules",
"heroku-prebuild": "bin/sshkey && bin/config",
"postinstall": "git rev-parse --is-inside-work-tree > /dev/null 2>&1 && git config core.hooksPath .githooks || exit 0",
"start": "bin/hubot -f ./dist/lib/boundary/hubot/adapters/slack.js",
"start:dev": "APP_ENV=dev tsc-watch --onSuccess 'bin/hubot -f ./dist/lib/boundary/hubot/adapters/slack.js'",
"test": "APP_ENV=test TZ=UTC vitest --watch=false && tsc --noEmit",
"test:watch": "APP_ENV=test TZ=UTC vitest"
},
"engines": {
"node": "22.x"
},
"type": "module",
"dependencies": {
"@slack/socket-mode": "1.3.4",
"@slack/web-api": "7.0.4",
"drizzle-orm": "0.33.0",
"handlebars": "4.7.8",
"https-proxy-agent": "^7.0.5",
"hubot": "11.1.4",
"jssm": "github:mhsdef/jssm#node-ts-esm-yaaay",
"luxon": "3.5.0",
"pg": "8.13.0",
"sugar-date": "2.0.6",
"dotenv": "^16.4.5"
},
"optionalDependencies": {
"jira.js": "4.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/luxon": "^3.4.2",
"@types/pg": "^8.11.10",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.3.1"
}
}