forked from bastidest/vue-step-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "vue-step-progress",
"version": "1.0.1",
"repository": "bastidest/vue-step-progress",
"description": "A Vue component to display a progressbar with labels",
"main": "./dist/vue-step-progress.min.js",
"scripts": {
"dev": "node ./dev/dev-server.js",
"build": "webpack-cli --progress --config webpack.prod.config.js"
},
"author": "Basti Destruction <[email protected]>",
"license": "MIT",
"peerDependencies": {
"vue": "3.x"
},
"files": [
"/src",
"/dist"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cssnano": "^5.1.12",
"eslint": "^8.19.0",
"eslint-plugin-vue": "^9.3.0",
"express": "^4.17.1",
"mini-css-extract-plugin": "^2.6.1",
"pug": "^3.0.0",
"pug-plain-loader": "^1.1.0",
"sass": "^1.37.5",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"vue": "^3.2.37",
"vue-loader": "^17.0.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^5.3.3"
}
}