質問編集履歴
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,7 +112,7 @@
|
|
112
112
|
|
113
113
|
"react": "^16.8.0",
|
114
114
|
|
115
|
-
"react-router-dom": "^5.2.0",
|
115
|
+
"react-router-dom": "^5.2.0", ※問題解決後
|
116
116
|
|
117
117
|
"react-dom": "^16.8.0",
|
118
118
|
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,6 +112,8 @@
|
|
112
112
|
|
113
113
|
"react": "^16.8.0",
|
114
114
|
|
115
|
+
"react-router-dom": "^5.2.0",
|
116
|
+
|
115
117
|
"react-dom": "^16.8.0",
|
116
118
|
|
117
119
|
"react-scripts": "4.0.0",
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -71,3 +71,107 @@
|
|
71
71
|
ざっくりした質問にて恐縮ですが、ご回答いただけますと幸いでございます。
|
72
72
|
|
73
73
|
よろしくお願いいたします。※情報に不足等あれば、その旨ご教示ください。
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
### 追記
|
78
|
+
|
79
|
+
package.jsonは以下です。
|
80
|
+
|
81
|
+
```ここに言語を入力
|
82
|
+
|
83
|
+
{
|
84
|
+
|
85
|
+
"name": "hogehoge",
|
86
|
+
|
87
|
+
"version": "0.1.0",
|
88
|
+
|
89
|
+
"private": true,
|
90
|
+
|
91
|
+
"dependencies": {
|
92
|
+
|
93
|
+
"@material-ui/core": "^4.11.0",
|
94
|
+
|
95
|
+
"@material-ui/icons": "^4.9.1",
|
96
|
+
|
97
|
+
"@testing-library/jest-dom": "^5.11.5",
|
98
|
+
|
99
|
+
"@testing-library/react": "^11.1.0",
|
100
|
+
|
101
|
+
"@testing-library/user-event": "^12.1.10",
|
102
|
+
|
103
|
+
"@types/jest": "^26.0.15",
|
104
|
+
|
105
|
+
"@types/node": "^12.19.1",
|
106
|
+
|
107
|
+
"@types/react": "^16.9.53",
|
108
|
+
|
109
|
+
"@types/react-dom": "^16.9.8",
|
110
|
+
|
111
|
+
"@types/react-router-dom": "^5.1.6",
|
112
|
+
|
113
|
+
"react": "^16.8.0",
|
114
|
+
|
115
|
+
"react-dom": "^16.8.0",
|
116
|
+
|
117
|
+
"react-scripts": "4.0.0",
|
118
|
+
|
119
|
+
"typescript": "^4.0.3",
|
120
|
+
|
121
|
+
"web-vitals": "^0.2.4"
|
122
|
+
|
123
|
+
},
|
124
|
+
|
125
|
+
"scripts": {
|
126
|
+
|
127
|
+
"start": "react-scripts start",
|
128
|
+
|
129
|
+
"build": "react-scripts build",
|
130
|
+
|
131
|
+
"test": "react-scripts test",
|
132
|
+
|
133
|
+
"eject": "react-scripts eject"
|
134
|
+
|
135
|
+
},
|
136
|
+
|
137
|
+
"eslintConfig": {
|
138
|
+
|
139
|
+
"extends": [
|
140
|
+
|
141
|
+
"react-app",
|
142
|
+
|
143
|
+
"react-app/jest"
|
144
|
+
|
145
|
+
]
|
146
|
+
|
147
|
+
},
|
148
|
+
|
149
|
+
"browserslist": {
|
150
|
+
|
151
|
+
"production": [
|
152
|
+
|
153
|
+
">0.2%",
|
154
|
+
|
155
|
+
"not dead",
|
156
|
+
|
157
|
+
"not op_mini all"
|
158
|
+
|
159
|
+
],
|
160
|
+
|
161
|
+
"development": [
|
162
|
+
|
163
|
+
"last 1 chrome version",
|
164
|
+
|
165
|
+
"last 1 firefox version",
|
166
|
+
|
167
|
+
"last 1 safari version"
|
168
|
+
|
169
|
+
]
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
}
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
```
|