-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 935 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
{
"name": "github-azure-pipelines-sync",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm run start:host & npm run watch",
"build:production": "npm run prestart && npm prune --production",
"test": "echo \"No tests yet...\""
},
"dependencies": {
"@octokit/graphql": "^4.3.1",
"@octokit/graphql-schema": "^6.65.0",
"@octokit/rest": "^16.43.1",
"@octokit/webhooks": "^7.0.0",
"abort-controller": "^3.0.0",
"azure-function-express": "^2.0.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"rxjs": "^6.5.4",
"semver": "^7.1.2"
},
"devDependencies": {
"@azure/functions": "^1.0.2-beta2",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/semver": "^7.1.0",
"typescript": "^3.7.5"
}
}