-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 956 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
{
"name": "gh-pr-webhook",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/malwoodsantoro/gh-pr-webhook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/malwoodsantoro/gh-pr-webhook/issues"
},
"homepage": "https://github.com/malwoodsantoro/gh-pr-webhook#readme",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-sse": "^0.5.3",
"http-proxy-middleware": "^2.0.6",
"react-hooks-sse": "^2.1.0",
"react-icons": "^4.6.0",
"sequelize": "^6.25.3",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"concurrently": "^7.4.0",
"nodemon": "^2.0.20"
}
}