This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
83 lines (83 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dt-mergebot",
"version": "3.0.0",
"description": "The bot that manages DefinitelyTyped PRs.",
"author": "DT Maintainers",
"homepage": "https://github.com/DefinitelyTyped/dt-mergebot#readme",
"main": "dist/functions/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/dt-mergebot.git"
},
"bugs": {
"url": "https://github.com/DefinitelyTyped/dt-mergebot/issues"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@apollo/client": "^3.10.3",
"@azure/functions": "^4.4.0",
"@definitelytyped/old-header-parser": "npm:@definitelytyped/[email protected]",
"@definitelytyped/utils": "^0.1.6",
"@octokit/webhooks-methods": "^4.1.0",
"dayjs": "^1.11.11",
"fast-json-patch": "^3.1.1",
"graphql": "15.8.0",
"prettyjson": "^1.2.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@octokit/graphql-schema": "^14.58.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.33",
"@types/prettyjson": "^0.0.33",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"apollo": "^2.34.0",
"azure-functions-core-tools": "^4.0.5700",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^52.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-file-snapshot": "^0.5.0",
"knip": "^5.15.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"overrides": {
"apollo": {
"graphql": "15.8.0"
},
"apollo-language-server": {
"graphql": "15.8.0"
}
},
"scripts": {
"prestart": "pnpm run build",
"prepublishOnly": "pnpm run build",
"build": "tsc",
"bundle": "rimraf dist && esbuild --bundle --platform=node --format=cjs --target=node18 --external:@azure/functions-core --outfile=dist/functions/index.js src/functions/index.ts",
"watch": "tsc --watch",
"graphql-schema": "apollo client:codegen schema --target typescript --globalTypesFile=src/queries/schema/graphql-global-types.ts",
"create-fixture": "pnpm run build && node dist/commands/create-fixture.js",
"update-test-data": "pnpm run build && node dist/commands/update-test-data.js",
"update-all-fixtures": "pnpm run build && node dist/commands/update-all-fixtures.js",
"start": "func start",
"lint": "eslint --report-unused-disable-directives .",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"packageManager": "[email protected]+sha256.691fe176eea9a8a80df20e4976f3dfb44a04841ceb885638fe2a26174f81e65e"
}