forked from DefinitelyTyped/dt-mergebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.2 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
66
67
68
69
70
{
"name": "dt-mergebot",
"description": "The bot that manages DefinitelyTyped PRs.",
"author": "DT Maintainers",
"homepage": "https://github.com/DefinitelyTyped/dt-mergebot#readme",
"version": "2.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/dt-mergebot.git"
},
"bugs": {
"url": "https://github.com/DefinitelyTyped/dt-mergebot/issues"
},
"engines": {
"node": ">=14.16.1"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@definitelytyped/header-parser": "^0.0.64",
"@octokit/webhooks": "^9.5.1",
"dayjs": "^1.10.3",
"fast-json-patch": "^3.0.0-1",
"fs-extra": "^9.0.1",
"graphql": "14.7.0",
"node-fetch": "^2.6.1",
"prettyjson": "^1.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@azure/functions": "^1.2.2",
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2",
"@octokit/graphql-schema": "^10.11.0",
"@types/fs-extra": "^4.0.11",
"@types/jest": "^26.0.20",
"@types/node": "latest",
"@types/node-fetch": "^2.5.7",
"@types/prettyjson": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"apollo": "^2.33.1",
"eslint": "^7.14.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^26.6.3",
"jest-file-snapshot": "^0.5.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"graphql-schema": "npx apollo client:codegen schema --target typescript --globalTypesFile=src/queries/schema/graphql-global-types.ts",
"create-fixture": "npm run build && node bin/commands/create-fixture.js",
"update-test-data": "npm run build && node bin/commands/update-test-data.js",
"update-all-fixtures": "npm run build && node bin/commands/update-all-fixtures.js",
"start": "func start",
"deploy": "func azure functionapp publish TypeScriptReposAutomation",
"lint": "eslint --report-unused-disable-directives .",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/bin/"
]
}
}