-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.42 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
{
"name": "pokedex-challenge",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:gql": "concurrently --names 'APP,GQL' -c 'bgBlue.bold,bgMagenta.bold' 'npm run dev' 'npm run gql:watch'",
"build": "tsc && vite build",
"preview": "vite preview",
"gql:compile": "graphql-codegen --config codegen.ts",
"gql:watch": "graphql-codegen --config codegen.ts -w",
"prettier": "prettier --check 'src/**/*.{ts,tsx}' '!src/__generated__/**'",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx}' '!src/__generated__/**'",
"lint": "eslint . --ext=ts,tsx --max-warnings 0",
"lint:fix": "npm run lint --cache --format pretty --fix . || true",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/exo-2": "^4.5.10",
"@mui/icons-material": "^5.10.15",
"@mui/material": "^5.10.15",
"cross-fetch": "^3.1.5",
"graphql": "^16.6.0",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"react-transition-group": "^4.4.5",
"react-waypoint": "^10.3.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/client-preset": "1.1.4",
"@graphql-codegen/introspection": "2.2.1",
"@jest/globals": "^29.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@vitejs/plugin-react": "^2.2.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"msw": "^0.49.0",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"vite": "^3.2.3"
},
"msw": {
"workerDirectory": "public"
}
}