-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 931 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": "clearbot",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Clear Function chat/slack bot",
"author": "David Mohundro <david@clearfunction.com>",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.1.1",
"socket.io": "^4.8.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.17.0"
},
"scripts": {
"lint": "eslint '**/*.ts'",
"dev": "bun ./src/app.ts",
"build:prod": "bun build --compile --minify --sourceapp src/app.ts --outfile build/app",
"start:prod": "build/app",
"test": "vitest"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "3.4.1",
"vitest": "^2.1.3"
}
}