-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.73 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "pokebrowser",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "20.x.x"
},
"scripts": {
"dev": "vite",
"dev:mock": "vite --mode mock",
"build": "tsc && vite build",
"test": "jest --watch",
"test-coverage": "jest --coverage",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/",
"preview": "vite preview",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.4",
"@types/jest": "^29.0.2",
"graphql": "^16.6.0",
"immer": "^9.0.15",
"jotai": "^1.8.3",
"msw": "^0.47.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.12.0",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-msw": "^1.1.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.3",
"@graphql-codegen/typescript-react-query": "^4.0.1",
"@swc/core": "^1.3.1",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tsconfig/vite-react": "^1.0.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-tsconfig-paths": "^3.5.1"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"setupFilesAfterEnv": [
"<rootDir>/src/setUpTests.js"
],
"modulePaths": [
"<rootDir>/src"
]
},
"prettier": {
"semi": false,
"trailingComma": "all",
"bracketSameLine": true,
"singleAttributePerLine": true
},
"browserslist": [
"defaults"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"msw": {
"workerDirectory": "public"
}
}