This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "octosync",
"main": "index.js",
"author": "Marcelo Cardoso <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"build": "lerna bootstrap && lerna run build",
"start:webhooks": "yarn workspace @octosync/webhooks start",
"start:webhooks:prod": "yarn workspace @octosync/webhooks start:prod",
"start:bot": "yarn workspace @octosync/bot start",
"start:expose": "lt --port 8000",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"publish": "lerna publish from-package",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"dependencies": {
"@octokit/rest": "^18.5.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"probot": "^11.0.1",
"lerna": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/github": "^7.2.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.37",
"commitizen": "^4.2.4",
"concurrently": "^6.0.1",
"cz-lerna-changelog": "^2.0.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"localtunnel": "^2.0.1",
"nock": "^13.0.5",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/marcelovicentegc/octosync.git"
},
"publishConfig": {
"access": "restricted"
}
}