-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.81 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.81 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vue-webpack-starter",
"version": "3.3.0",
"description": "vue webpack starter",
"scripts": {
"start": "npm run dev",
"lint": "eslint --ext .js,.vue -c .eslintrc .",
"lint:fix": "eslint --fix --ext .js,.vue -c .eslintrc .",
"dev": "npx webpack-cli --define-process-env-node-env development -c webpack/webpack.dev.config.js -w --color",
"build": "npx webpack-cli --define-process-env-node-env production -c webpack/webpack.build.config.js --progress --color",
"build:watch": "npx webpack-cli --define-process-env-node-env production -c webpack/webpack.build.config.js --progress --color -w",
"build:test_server:watch": "npx webpack-cli --define-process-env-node-env production_test_server -c webpack/webpack.build.config.js --progress --color -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycjimmy/vue-webpack-starter.git"
},
"keywords": [
"vue",
"webpack"
],
"author": "cycjimmy <cycjimmy@gmail.com> (https://github.com/cycjimmy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cycjimmy/vue-webpack-starter/issues"
},
"homepage": "https://github.com/cycjimmy/vue-webpack-starter#readme",
"engines": {
"node": "18"
},
"dependencies": {
"@cycjimmy/awesome-js-funcs": "^4.0.9",
"@cycjimmy/hello-vue-lib": "^1.3.0",
"@cycjimmy/mini-xhr": "^7.0.1",
"@cycjimmy/sass-lib": "^2.3.0",
"@cycjimmy/vue-h5-audio-controls": "^2.1.0",
"vue": "^3.4.37",
"vue-router": "^4.4.2",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.3",
"@cycjimmy/config-lib": "^3.2.2",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^7.0.4",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.27.0",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"image-webpack-loader": "^8.1.0",
"merge-stream": "^2.0.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.41",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"url-loader": "^4.1.1",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"peerDependencies": {
"postcss": "^8.4.38"
}
}