-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "grommet-sample",
"version": "0.1.0",
"private": true,
"dependencies": {
"graphql": "^15.5.1",
"grommet": "2.11.0",
"grommet-icons": "4.4.0",
"grommet-theme-v1": "^0.1.0",
"prop-types": "^15.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^5.13.1",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.3",
"styled-components": "5.0.1",
"urql": "^2.0.4"
},
"scripts": {
"start": "yarn generate && react-scripts start",
"build": "yarn generate && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"generate": "graphql-codegen --config codegen.yml"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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.21.6",
"@graphql-codegen/typescript": "1.22.4",
"@graphql-codegen/typescript-operations": "^1.18.3",
"@graphql-codegen/typescript-urql": "^2.0.10",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"typescript": "^4.2.3"
}
}