-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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": "welcomebot",
"version": "0.0.0",
"description": "Powering the Hack Club Welcome Comitee, and keeping track of all members!",
"main": "index.js",
"maintainers": [
{
"name": "Kartikey S. Chauhan",
"email": "[email protected]",
"url": "https://cskartikey.dev"
}
],
"scripts": {
"start": "node dist/index.js",
"build": "prisma generate && tsc",
"dev": "nodemon src/index.ts",
"fmt": "npx prettier --write ."
},
"keywords": [],
"author": "Kartikey S. Chauhan <[email protected]>",
"license": "MIT",
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@cskartikey/bolt-prisma": "^1.0.5",
"@prisma/client": "^5.19.1",
"@slack/bolt": "^3.21.1",
"@slack/logger": "^4.0.0",
"@slack/oauth": "^3.0.1",
"@types/express": "^4.17.21",
"airtable": "^0.12.2",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"prisma": "^5.19.1",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.14.1"
}
}