-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
48
49
{
"name": "@rowanmanning/yeehaw",
"version": "2.0.0",
"private": true,
"description": "Race horses in Slack",
"keywords": [
"horse",
"race",
"yeehaw"
],
"author": "Rowan Manning (https://rowanmanning.com/)",
"repository": {
"type": "git",
"url": "https://github.com/rowanmanning/yeehaw.git"
},
"homepage": "https://github.com/rowanmanning/yeehaw",
"bugs": "https://github.com/rowanmanning/yeehaw/issues",
"license": "MIT",
"engines": {
"node": "22.x"
},
"scripts": {
"verify": "npm run verify:biome && npm run verify:types",
"verify:biome": "biome check",
"start": "node .",
"start:dev": "node --watch . | pino-pretty",
"verify:types": "tsc --noEmit --project ./jsconfig.json",
"prepare": "husky"
},
"dependencies": {
"@slack/bolt": "^3.22.0",
"dotenv": "^16.4.5",
"mongoose": "^8.8.0",
"pino": "^9.5.0",
"random-item": "^3.1.0",
"slack-bolt-mongoose": "^0.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@rowanmanning/biome-config": "^1.3.1",
"husky": "^9.1.7",
"pino-pretty": "^11.3.0",
"typescript": "^5.7.3"
},
"volta": {
"node": "22.9.0"
}
}