-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.91 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.91 KB
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
84
85
86
87
88
89
90
91
{
"name": "private-mirrors",
"version": "0.1.0",
"private": true,
"description": "A GitHub App that allows you to contribute upstream using a 'private fork'",
"author": "Andrew Henry <ajhenry@github.com>",
"license": "MIT",
"homepage": "https://github.com/github-community-projects/private-mirrors",
"scripts": {
"dev": "concurrently -c \"auto\" -n webhooks,app \"dotenv-load node scripts/webhook-relay.mjs\" \"next dev\"",
"webhook": "dotenv-load node scripts/webhook-relay.mjs",
"build": "SKIP_ENV_VALIDATIONS='true' next build --webpack",
"start": "next start",
"lint": "SKIP_ENV_VALIDATIONS='true' eslint .",
"lint:fix": "SKIP_ENV_VALIDATIONS='true' eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"type-check": "tsc --noEmit",
"bot:build": "tsc ./src/bot/index.ts --noEmit false --esModuleInterop --outDir ./build",
"bot:start": "probot run ./build/index.js",
"test": "npm run type-check && TEST_LOGGING=1 ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js",
"prepare": "husky || true"
},
"dependencies": {
"@octokit/auth-app": "6.1.1",
"@octokit/graphql-schema": "15.26.0",
"@primer/octicons-react": "19.15.2",
"@primer/react": "36.27.0",
"@t3-oss/env-nextjs": "0.13.7",
"@tanstack/react-query": "4.36.1",
"@trpc/client": "10.45.3",
"@trpc/react-query": "10.45.3",
"@trpc/server": "10.45.3",
"fast-safe-stringify": "2.1.1",
"fuse.js": "7.1.0",
"next": "16.2.3",
"next-auth": "4.24.12",
"octokit": "3.2.2",
"probot": "13.4.7",
"proxy-agent": "6.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"simple-git": "3.32.3",
"styled-components": "5.3.11",
"superjson": "2.2.2",
"tempy": "1.0.1",
"tslog": "4.9.3",
"undici": "6.24.0",
"zod": "3.25.56"
},
"devDependencies": {
"@babel/preset-env": "7.27.2",
"@eslint/js": "9.39.2",
"@tanstack/eslint-plugin-query": "5.78.0",
"@types/jest": "29.5.14",
"@types/node": "^22.19.15",
"@types/node-fetch": "2.6.12",
"@types/react": "18.3.12",
"@types/styled-components": "5.1.36",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"babel-jest": "29.7.0",
"concurrently": "9.1.2",
"dotenv-load": "3.0.0",
"eslint": "9.39.2",
"eslint-config-next": "16.1.6",
"eslint-plugin-jest": "29.15.2",
"github-app-webhook-relay-polling": "2.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.5.1",
"nock": "14.0.5",
"prettier": "3.5.3",
"ts-jest": "29.3.4",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"typescript-eslint": "8.54.0"
},
"engines": {
"node": "^22 || ^24"
},
"lint-staged": {
"*": [
"npm run format",
"npm run lint"
],
"'.ts', '.tsx', '.d.ts', '.cts', '.d.cts', '.mts', '.d.mts'": [
"npm run type-check"
]
}
}