-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 839 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 839 Bytes
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
{
"name": "pr-review-dashboard",
"version": "1.0.0",
"description": "A dashboard to view GitHub PR comments separated by reviewer",
"main": "dist/index.js",
"bin": {
"pr-dashboard": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"server": "node dist/server.js",
"dev:server": "ts-node src/server.ts"
},
"keywords": [
"github",
"pull-request",
"code-review",
"dashboard"
],
"author": "",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.0.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}