-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.43 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
{
"name": "ksrb.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "concurrently -r \"npm:start:dev\" \"npm:graphql-codegen:watch\"",
"start:dev": "react-scripts start",
"graphql-codegen": "graphql-codegen",
"graphql-codegen:watch": "npm run graphql-codegen -- -w",
"format": "prettier --write \"src{/**/*,*}.{tsx,graphql}\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@apollo/client": "^3.3.8",
"@apollo/react-hooks": "^4.0.0",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.20.1",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/introspection": "^1.18.1",
"@graphql-codegen/typescript": "^1.20.2",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-codegen/typescript-resolvers": "^1.18.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-jss": "^10.0.0",
"clsx": "^1.1.1",
"concurrently": "^5.3.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"graphql.macro": "^1.4.2",
"gsap": "^3.6.0",
"jss": "^10.5.1",
"jss-plugin-camel-case": "^10.5.1",
"jss-plugin-compose": "^10.5.1",
"jss-plugin-default-unit": "^10.5.1",
"jss-plugin-extend": "^10.5.1",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-jss": "^10.5.1",
"react-material-ui-carousel": "^2.2.1",
"react-scripts": "^4.0.2",
"typescript": "^4.1.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended",
"prettier/react"
],
"rules": {
"prettier/prettier": "warn"
}
}
}