-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
{
"name": "webpack4-demo",
"version": "3.0.0",
"description": "use webpack4 demo",
"main": "server/index.js",
"scripts": {
"develop": "node server/watcher.js",
"webpack": "node_modules/.bin/webpack",
"test": "node server/index.js"
},
"dependencies": {
"ejs": "^2.6.1",
"koa": "^2.5.2",
"koa-body": "^4.0.4",
"koa-i18n": "^2.1.0",
"koa-json": "^2.0.2",
"koa-locale": "^1.3.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@kazupon/vue-i18n-loader": "^0.3.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"chokidar": "^2.1.5",
"clean-webpack-plugin": "^2.0.1",
"core-js": "^3.1.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^3.0.1",
"html-inject-plugin": "^1.0.6",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"vue": "^2.6.10",
"vue-eslint-parser": "^6.0.4",
"vue-i18n": "^8.10.0",
"vue-loader": "^15.7.0",
"vue-router": "^3.0.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"author": "Yi-love",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yi-love/webpack4-demo.git"
},
"keywords": [
"webpack4"
],
"bugs": {
"url": "https://github.com/Yi-love/webpack4-demo/issues"
},
"homepage": "https://github.com/Yi-love/webpack4-demo#readme"
}