-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.17 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
{
"name": "studyui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "yarn build:umd && yarn build:theme",
"build:umd": "vue-cli-service build --target lib --dest docs/static/lib --name studyui packages/index.js && cp-cli docs/static/lib/studyui.umd.min.js dist/studyui.min.js",
"build:theme": "webpack --config ./packages/theme/webpack.config.js && cp-cli packages/theme/lib/index.css docs/static/css/index.css && cp-cli packages/theme/lib/index.css dist/theme-default/index.css",
"docs": "docsify serve docs",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"babel-eslint": "^10.0.1",
"cp-cli": "^2.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}