-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.93 KB
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
{
"name": "webpack-v4-vue",
"version": "1.0.0",
"description": "webpack v4",
"main": "index.js",
"scripts": {
"start":"npm run dev",
"dev": "node config/run.js webpack-dev.js",
"build": "node config/run.js webpack-pro.js"
},
"repository": {
"type": "git",
"url": "git@gitee.com:jack-team/webpack-v4-vue.git"
},
"keywords": [
"webpack4",
"vue",
"ts"
],
"author": "jacker",
"license": "ISC",
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.0.6",
"vuex": "^3.1.0",
"vue-property-decorator":"^8.1.0",
"axios": "^0.18.0",
"vuex-persistedstate":"^2.5.4",
"mescroll.js":"^1.4.1",
"vuex-class":"^0.3.2",
"fastclick":"^1.0.6",
"photoswipe":"^4.1.3"
},
"devDependencies": {
"webpack": "^4.30.0",
"webpack-dev-server": "^3.3.1",
"style-loader": "^0.23.1",
"css-loader": "^2.1.1",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"postcss-loader": "^3.0.0",
"autoprefixer": "^9.5.1",
"mini-css-extract-plugin": "^0.6.0",
"html-webpack-plugin": "^3.2.0",
"file-loader": "^3.0.1",
"url-loader": "^1.1.2",
"vue-loader": "^15.7.0",
"vue-hot-reload-api": "^2.3.3",
"vue-html-loader": "^1.2.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"typescript": "^3.4.5",
"ts-loader": "^6.0.0",
"clean-webpack-plugin": "^2.0.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"assets-webpack-plugin": "^3.9.10",
"optimize-css-assets-webpack-plugin":"^5.0.1",
"colors":"^1.3.3",
"open-browser-webpack-plugin":"^0.0.5",
"babel-register": "^6.26.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"babel-preset-stage-0": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5"
}
}