-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.38 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
{
"name": "rs-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 & npx prettier . --check",
"lint-fix": "npm run prettier && npm run eslint",
"preview": "vite preview",
"prettier": "prettier --config .prettierrc \"./**/*.{ts,tsx,json,scss}\" --write",
"eslint": "eslint --ext . \"./**/*.{ts,tsx}\" --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@reduxjs/toolkit": "^2.0.1",
"@uiw/codemirror-extensions-langs": "^4.21.21",
"@uiw/codemirror-theme-material": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"classnames": "^2.3.2",
"firebase": "^10.6.0",
"graphql": "^16.8.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.48.2",
"react-redux": "^9.0.2",
"react-resizable-panels": "^1.0.5",
"react-router-dom": "^6.20.1",
"react-toastify": "^9.1.3",
"sort-by": "^0.0.2",
"yup": "^1.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@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",
"@types/redux-mock-store": "^1.0.6",
"@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",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"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.3",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"redux-mock-store": "^1.5.4",
"sass": "^1.79.4",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vite": "^5.3.6",
"vitest": "^1.0.1"
}
}