-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
99 lines (99 loc) · 3.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pets-front",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"@apollo/client": "^3.3.13",
"@auth0/auth0-react": "^1.4.0",
"@auth0/auth0-spa-js": "^1.17.0",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.1",
"@reduxjs/toolkit": "^1.6.2",
"@typescript-eslint/parser": "^5.4.0",
"apollo-upload-client": "^16.0.0",
"date-fns": "^2.19.0",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-plugin-jest": "^25.3.0",
"graphql": "^16.0.1",
"graphql.macro": "^1.4.2",
"mui-image": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-hook-form": "^7.15.1",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"react-scripts": "^4.0.3",
"redux-thunk": "^2.3.0",
"typescript": "^4.2.3",
"web-vitals": "^2.1.0",
"workbox-background-sync": "^6.2.4",
"workbox-broadcast-update": "^6.2.4",
"workbox-cacheable-response": "^6.2.4",
"workbox-core": "^6.2.4",
"workbox-expiration": "^6.2.4",
"workbox-google-analytics": "^6.2.4",
"workbox-navigation-preload": "^6.2.4",
"workbox-precaching": "^6.2.4",
"workbox-range-requests": "^6.2.4",
"workbox-routing": "^6.2.4",
"workbox-strategies": "^6.2.4",
"workbox-streams": "^6.2.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/html-to-draftjs": "^1.4.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"codegen": "graphql-codegen --config codegen.yml",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"ignorePatterns": [
"!src/*"
]
}
}