-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
{
"name": "rs-graphiql-front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "npm run lint",
"coverage": "vitest run --coverage",
"vitest": "vitest",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/autocomplete": "^6.7.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.11.3",
"@eslint/create-config": "0.4.3",
"@hookform/resolvers": "^3.1.0",
"@lezer/highlight": "^1.1.4",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.29.7",
"@uiw/codemirror-theme-material": "^4.19.16",
"@uiw/codemirror-themes": "^4.19.16",
"@uiw/react-codemirror": "^4.19.16",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"cm6-graphql": "^0.0.6",
"codemirror": "^6.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"firebase": "^9.21.0",
"graphql": "^16.6.0",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.2.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.3.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.0",
"react-toastify": "^9.1.2",
"sort-by": "^1.2.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vitest": "^0.30.1"
}
}