-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.68 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"private": true,
"scripts": {
"prebuild": "graphql-codegen",
"build": "yarn prebuild && remix build --sourcemap",
"dev": "remix dev",
"typecheck": "tsc",
"test": "yarn node --experimental-modules node_modules/.bin/vitest",
"test:e2e": "yarn playwright test",
"test:debug": "yarn node --inspect-brk=0.0.0.0 --experimental-modules node_modules/.bin/vitest --runInBand",
"prepare": "husky install && yarn pull",
"pull": "vc env pull .env"
},
"dependencies": {
"@octokit/auth-app": "^6.0.0",
"@octokit/auth-oauth-app": "^7.0.1",
"@octokit/plugin-throttling": "^8.0.0",
"@octokit/request-error": "^5.0.1",
"@octokit/rest": "^20.0.0",
"@octokit/types": "^12.4.0",
"@primer/octicons-react": "^19.0.0",
"@primer/react": "^36.0.0",
"@remix-run/node": "^2.7.1",
"@remix-run/react": "^2.7.1",
"@remix-run/v1-route-convention": "^0.1.4",
"@sentry/profiling-node": "^8.0.0",
"@sentry/remix": "^8.0.0",
"@tanstack/match-sorter-utils": "^8.7.6",
"@tanstack/react-table": "^8.7.9",
"@types/adm-zip": "^0.5.4",
"@types/async": "^3.2.18",
"@types/humanize-duration": "^3.27.1",
"@types/lodash": "^4.14.191",
"@vercel/analytics": "^1.0.0",
"@vercel/kv": "^2.0.0",
"@vercel/node": "^3.0.0",
"adm-zip": "^0.5.10",
"ansi-sequence-parser": "^1.1.1",
"async": "^3.2.4",
"debug": "^4.3.6",
"github-syntax-dark": "^0.5.0",
"github-syntax-light": "^0.5.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"humanize-duration": "^3.28.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-interval-hook": "^1.1.3",
"react-table": "^7.8.0",
"remix-auth": "^3.6.0",
"remix-auth-github": "^1.3.0",
"remix-auth-oauth2": "^2.0.0",
"remix-island": "^0.2.0",
"styled-components": "^5.0.0",
"type-fest": "^4.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.0.0",
"@playwright/test": "^1.41.2",
"@remix-run/dev": "^2.7.1",
"@remix-run/eslint-config": "^2.7.1",
"@remix-run/serve": "^2.7.1",
"@remix-run/testing": "2.15.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.0",
"@types/debug": "^4",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.29",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.0.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-primer-react": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"factory.ts": "^1.4.1",
"husky": ">=6",
"jsdom": "^24.0.0",
"jsdom-testing-mocks": "^1.11.0",
"lint-staged": ">=10",
"msw": "^2.3.1",
"prettier": "^3.0.0",
"tsc-files": "^1.1.3",
"typescript": "^5.0.0",
"vercel": "^34.0.0",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^2.0.0"
},
"engines": {
"node": "^22.0.0"
},
"name": "github-statuses",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Mause/github-statuses.git",
"author": "Elliana May <me@mause.me>",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": "yarn tsc-files --noEmit",
"*.{ts,tsx,js,graphql}": "yarn eslint --cache --fix",
"*.{ts,tsx,js,graphql,css,md}": "yarn prettier --write"
},
"packageManager": "yarn@4.5.3",
"msw": {
"workerDirectory": [
"public"
]
}
}