This repository was archived by the owner on Sep 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.31 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
{
"name": "graphiql",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix": "prettier . --write",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage",
"coverage-ui": "vitest --ui --coverage"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@types/toastify-js": "^1.12.3",
"@uiw/codemirror-extensions-langs": "^4.21.21",
"@uiw/codemirror-theme-aura": "^4.21.21",
"@uiw/codemirror-theme-noctis-lilac": "^4.21.21",
"@uiw/codemirror-theme-tokyo-night-day": "^4.21.21",
"@uiw/codemirror-theme-tokyo-night-storm": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"cm6-graphql": "^0.0.12",
"firebase": "^10.7.0",
"install": "^0.13.0",
"npm": "^10.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.48.2",
"react-router-dom": "^6.20.1",
"react-transition-group": "^4.4.5",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.0.1",
"@vitest/ui": "^1.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.0",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.0.1"
},
"lint-staged": {
"*.{tsx,ts,scss,module.scss}": "prettier --write",
"*.{tsx,ts}": "eslint --fix"
}
}