-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "SPAship Git Broker",
"version": "1.0.0",
"private": true,
"description": "SPAship Git Broker",
"license": "ISC",
"owner": "Soumyadip Chowdhury",
"homepage": "https://github.com/spaship/puzzle",
"contributors": [
{
"name": "Soumyadip Chowdhury",
"email": "[email protected]",
"url": "https://github.com/soumyadip007"
},
{
"name": "Palak Kotwani",
"url": "https://github.com/kotwani2883"
}
],
"keywords": [
"github"
],
"scripts": {
"start": "export NODE_TLS_REJECT_UNAUTHORIZED=0;node index.js",
"test": "jest",
"start:dev": "nodemon index.js",
"format": "npm run prettier:fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write"
},
"dependencies": {
"@gitbeaker/node": "^35.8.1",
"@octokit/rest": "^19.0.7",
"@octokit/webhooks": "^10.7.0",
"@spaship/common": "^0.14.0",
"axios": "^1.3.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-pino-logger": "^5.0.0",
"github-webhook-handler": "^1.0.0",
"gitlab": "^14.2.2",
"lodash": "^4.17.15",
"octokit": "^2.0.14",
"request": "^2.88.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"smee-client": "^1.2.2"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}