質問編集履歴
1
package.jsonの追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,4 +23,37 @@
|
|
23
23
|
npm ERR! A complete log of this run can be found in:
|
24
24
|
npm ERR! C:\Users\VAIO\AppData\Roaming\npm-cache\_logs\2020-06-06T10_09_55_117Z-debug.log
|
25
25
|
```
|
26
|
-
とエラー文が表示される。
|
26
|
+
とエラー文が表示される。
|
27
|
+
|
28
|
+
追記:package.json
|
29
|
+
```html
|
30
|
+
{
|
31
|
+
"name": "vaio",
|
32
|
+
"version": "1.0.0",
|
33
|
+
"description": "",
|
34
|
+
"main": "hello_world.js",
|
35
|
+
"scripts": {
|
36
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
37
|
+
"tsc": "tsc",
|
38
|
+
"tslint": "tslint",
|
39
|
+
"typedoc": "typedoc"
|
40
|
+
},
|
41
|
+
"author": "",
|
42
|
+
"license": "ISC",
|
43
|
+
"dependencies": {
|
44
|
+
"give-me-a-joke": "^0.3.2",
|
45
|
+
"node-fetch": "^2.6.0",
|
46
|
+
"vue": "^2.6.10",
|
47
|
+
"vue-loader": "^15.9.2"
|
48
|
+
},
|
49
|
+
"devDependencies": {
|
50
|
+
"tslint": "^6.1.2",
|
51
|
+
"tslint-config-airbnb": "^5.11.2",
|
52
|
+
"typedoc": "^0.17.6",
|
53
|
+
"typescript": "^3.8.3",
|
54
|
+
"webpack": "^4.43.0",
|
55
|
+
"webpack-cli": "^3.3.11",
|
56
|
+
"webpack-dev-server": "^3.11.0"
|
57
|
+
}
|
58
|
+
}
|
59
|
+
```
|