-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 2.21 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
{
"name": "github-deploy-center",
"private": true,
"scripts": {
"analyze": "yarn build && open stats.html",
"start": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"codegen": "graphql-codegen --config codegen.yml && sed -i '' -e 's|graphql-request/dist|graphql-request/src|' src/generated/graphql.ts",
"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.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.8",
"@octokit/rest": "^20.0.1",
"@tanstack/react-query": "^4.35.0",
"@tanstack/react-query-devtools": "^4.35.0",
"browser-fs-access": "^0.34",
"dayjs": "^1.11.9",
"graphql": "^16.8.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"isomorphic-fetch": "^3.0.0",
"lodash-es": "^4.17.21",
"overmind": "^28.0.3",
"overmind-react": "^29.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal-promise": "^1.0.2",
"recoil": "^0.7.7",
"uuid": "^9.0.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "4.0.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.4",
"@types/lodash-es": "^4.17.9",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.3",
"@vitejs/plugin-react": "^4.0.4",
"cross-env": "^7.0.3",
"json-format": "^1.0.1",
"json-format-cli": "^1.1.1",
"rollup-plugin-visualizer": "^5.9.2",
"ts-node": "^10.9.1",
"type-fest": "^4.3.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"packageManager": "[email protected]"
}