-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"name": "dexterous",
"version": "2.3.1",
"private": true,
"homepage": "https://lemonpole.github.io/dexterous/",
"bugs": {
"url": "https://github.com/lemonpole/dexterous/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lemonpole/dexterous/"
},
"scripts": {
"build": "craco build",
"deploy": "npx gh-pages -d build -m \"$(git log -1 --pretty=%B)\"",
"dev": "concurrently \"npm start\" \"npm run generate --watch\"",
"generate": "graphql-codegen",
"predeploy": "npm run build",
"start": "craco start"
},
"dependencies": {
"@apollo/client": "3.6.9",
"@chakra-ui/icons": "2.0.2",
"@chakra-ui/react": "2.2.1",
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"apollo3-cache-persist": "0.14.1",
"framer-motion": "6.3.16",
"graphql": "16.5.0",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"react-router-dom": "6.22.3"
},
"devDependencies": {
"@craco/craco": "6.4.3",
"@graphql-codegen/cli": "2.8.1",
"@graphql-codegen/typed-document-node": "2.3.1",
"@graphql-codegen/typescript": "2.7.1",
"@graphql-codegen/typescript-operations": "2.5.1",
"@types/node": "12.20.55",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"concurrently": "7.2.2",
"prettier": "2.8.4",
"react-scripts": "5.0.1",
"typescript": "4.7.4",
"workbox-webpack-plugin": "6.5.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"codegen": {
"schema": "https://beta.pokeapi.co/graphql/v1beta",
"documents": "./src/**/*.graphql",
"overwrite": true,
"generates": {
"src/lib/graphql.ts": {
"plugins": [
"typescript",
"typescript-operations",
"typed-document-node"
]
}
}
}
}