-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.4 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.4 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
{
"name": "github-deploy-center",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"analyze": "bun run build && open stats.html",
"start": "vite",
"test": "bun test",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"preview": "vite preview",
"build": "tsc && vite build",
"codegen": "graphql-codegen --config codegen.yml",
"update-github-schema": "curl -H \"Authorization: Bearer $GITHUB_PAT\" https://api.github.com/graphql --output github.schema.json && json-format github.schema.json --indent 2",
"package": "mkdir -p artifacts && cd dist && zip -r ../artifacts/release.zip ."
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^9.0.0",
"@mui/material-pigment-css": "^9.0.0",
"@octokit/rest": "^22.0.1",
"@pigment-css/react": "^0.0.30",
"@tanstack/react-query": "^5.100.5",
"@tanstack/react-query-devtools": "^5.100.5",
"dayjs": "^1.11.9",
"graphql": "^16.13.2",
"graphql-request": "^7.4.0",
"graphql-tag": "^2.12.6",
"isomorphic-fetch": "^3.0.0",
"lodash-es": "^4.17.21",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-modal-promise": "^1.0.2",
"uuid": "^14.0.0",
"valtio": "^2.3.1",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@graphql-codegen/cli": "^6.3.1",
"@graphql-codegen/introspection": "^5.0.2",
"@graphql-codegen/typescript": "^5.0.10",
"@graphql-codegen/typescript-graphql-request": "^7.0.1",
"@graphql-codegen/typescript-operations": "^5.1.0",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/babel__core": "^7.20.5",
"@types/file-saver": "^2.0.5",
"@types/lodash-es": "^4.17.9",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"happy-dom": "^15.11.7",
"json-format": "^1.0.1",
"json-format-cli": "^1.1.1",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "^6.0.3",
"vite": "^8.0.10"
},
"packageManager": "bun@1.3.13"
}