質問編集履歴
2
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -77,3 +77,101 @@
|
|
77
77
|
export default Sample
|
78
78
|
|
79
79
|
```
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
##質問の回答
|
84
|
+
|
85
|
+
package.json
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
{
|
92
|
+
|
93
|
+
"name": "codemirror",
|
94
|
+
|
95
|
+
"version": "0.1.0",
|
96
|
+
|
97
|
+
"private": true,
|
98
|
+
|
99
|
+
"dependencies": {
|
100
|
+
|
101
|
+
"@testing-library/jest-dom": "^5.11.6",
|
102
|
+
|
103
|
+
"@testing-library/react": "^11.2.2",
|
104
|
+
|
105
|
+
"@testing-library/user-event": "^12.6.0",
|
106
|
+
|
107
|
+
"@uiw/react-codemirror": "^3.0.1",
|
108
|
+
|
109
|
+
"codemirror": "^5.58.3",
|
110
|
+
|
111
|
+
"react": "^17.0.1",
|
112
|
+
|
113
|
+
"react-codemirror": "^1.0.0",
|
114
|
+
|
115
|
+
"react-codemirror2": "^7.2.1",
|
116
|
+
|
117
|
+
"react-dom": "^17.0.1",
|
118
|
+
|
119
|
+
"react-scripts": "4.0.1",
|
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
|
+
```
|
1
ミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -77,19 +77,3 @@
|
|
77
77
|
export default Sample
|
78
78
|
|
79
79
|
```
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
### 試したこと
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
ここに問題に対して試したことを記載してください。
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
### 補足情報(FW/ツールのバージョンなど)
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
ここにより詳細な情報を記載してください。
|