forked from github-community-projects/private-mirrors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.63 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
{
"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 <[email protected]>",
"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",
"start": "next start",
"lint": "SKIP_ENV_VALIDATIONS='true' next lint && prettier --check .",
"lint:fix": "SKIP_ENV_VALIDATIONS='true' next lint --fix && prettier --write .",
"bot:build": "tsc ./src/bot/index.ts --noEmit false --esModuleInterop --outDir ./build",
"bot:start": "probot run ./build/index.js",
"test": "TEST_LOGGING=1 ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js",
"prepare": "test -d node_modules/husky && husky || echo \"husky is not installed\""
},
"dependencies": {
"@octokit/auth-app": "6.1.1",
"@octokit/graphql-schema": "15.25.0",
"@primer/octicons-react": "19.11.0",
"@primer/react": "36.25.0",
"@t3-oss/env-nextjs": "0.10.1",
"@tanstack/react-query": "4.36.1",
"@trpc/client": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"fast-safe-stringify": "2.1.1",
"fuse.js": "7.0.0",
"next": "14.2.5",
"next-auth": "4.24.7",
"octokit": "3.2.1",
"probot": "13.3.6",
"proxy-agent": "6.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"simple-git": "3.25.0",
"styled-components": "5.3.11",
"superjson": "2.2.1",
"tempy": "1.0.1",
"tslog": "4.9.3",
"undici": "6.19.2",
"zod": "3.23.8"
},
"devDependencies": {
"@babel/preset-env": "7.24.8",
"@tanstack/eslint-plugin-query": "5.51.1",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
"@types/node-fetch": "2.6.11",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"babel-jest": "29.7.0",
"concurrently": "8.2.2",
"dotenv-load": "3.0.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"github-app-webhook-relay-polling": "2.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"nock": "14.0.0-beta.7",
"prettier": "3.3.3",
"ts-jest": "29.2.2",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"typescript-eslint": "7.16.1"
},
"engines": {
"node": ">= 18"
},
"lint-staged": {
"*": "npm run lint:fix"
}
}