-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "whos-that-pokemon",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@types/jest": "24.0.20",
"@types/node": "12.11.7",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/react-router-dom": "^5.1.5",
"@types/react-select": "^3.0.13",
"@types/styled-components": "^5.1.0",
"apollo-boost": "^0.4.9",
"graphql": "^15.1.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-select": "^3.1.0",
"styled-components": "^4.4.1",
"typescript": "^3.9.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"fetch:schema": "apollo schema:download --endpoint https://whos-that-pokemon-api.herokuapp.com/v1/graphql --header 'X-Hasura-Admin-Secret: $REACT_APP_HASURA_SECRET'",
"generate:types": "graphql-codegen --config graphql-codegen.yml"
},
"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"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^1.15.1",
"@graphql-codegen/typescript": "^1.15.1"
}
}