-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 983 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
34
35
36
37
38
39
40
41
42
43
{
"name": "githoney-bot",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx dist/index.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"axios": "^1.5.1",
"bech32": "^2.0.0",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eventsource": "^2.0.2",
"express": "^4.18.2",
"figlet": "^1.7.0",
"http-status-codes": "^2.3.0",
"minimist": "^1.2.8",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"octokit": "^3.1.1",
"pug": "^3.0.2",
"ts-node": "^10.9.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/eventsource": "^1.1.14",
"@types/figlet": "^1.5.8",
"@types/minimist": "^1.2.4",
"@types/morgan": "^1.9.7",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
}
}