-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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": "rtk-graphql-query-with-jest-and-vite",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"lint": "tsc --noEmit && eslint --fix \"**/*.@(js|jsx|ts|tsx)\"",
"build": "nx build",
"test": "nx test"
},
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"@rtk-query/graphql-request-base-query": "^2.2.0",
"gerillass": "^1.3.1",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.5.0",
"@nrwl/eslint-plugin-nx": "15.9.1",
"@nrwl/js": "15.9.1",
"@nrwl/linter": "15.9.1",
"@nrwl/nx": "^7.8.7",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "15.9.1",
"@nrwl/vite": "15.9.1",
"@nrwl/workspace": "15.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "~8.15.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unicorn": "^40.1.0",
"jest": "^29.5.0",
"jsdom": "~20.0.3",
"nx": "15.9.1",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"sass": "^1.55.0",
"typescript": "~4.9.5",
"vite": "^4.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.25.8",
"vitest-fetch-mock": "^0.2.2",
"whatwg-fetch": "^3.6.2"
}
}