-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "vuejs-proto-yadoms",
"version": "0.1.0",
"private": true,
"homepage": "https://abhay07.github.io/movieAppAngular",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"widgetgeneric": "vue-cli-service build --target lib --formats umd-min --no-clean --dest public/widgets/widget1 --name \"MyComponent.[chunkhash]\" widget/widget.vue",
"widget1": "vue-cli-service build --target lib --formats umd-min --no-clean --dest public/widgets/widget1 --name \"widget1\" widget/widget.vue",
"widget2": "vue-cli-service build --target lib --formats umd-min --no-clean --dest public/widgets/widget2 --name \"widget2\" widget/widget2.vue",
"widget3": "vue-cli-service build --target lib --formats umd-min --no-clean --dest public/widgets/widget3 --name \"widget3\" widget/widget3.vue",
"allwidgets": "npm run widget1 && npm run widget2 && npm run widget3"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.0.1",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}