Vue example

This commit is contained in:
2020-05-06 09:10:49 +02:00
parent a77473fad4
commit 43af48334c
15 changed files with 9100 additions and 0 deletions

48
examples/vue/package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "bindable-property-ex-vue",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"updatelib": "run-script-os",
"updatelib:win32": "pushd ..\\.. && npm pack && popd && npm install ../../bindable-property-1.0.0.tgz",
"updatelib:default": "pushd ../.. && npm pack && popd && npm install ../../bindable-property-1.0.0.tgz"
},
"keywords": [],
"author": "",
"license": "BSD",
"description": "",
"devDependencies": {
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/webpack": "^4.41.12",
"@types/webpack-dev-server": "^3.10.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"html-webpack-plugin": "^4.2.0",
"run-script-os": "^1.1.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.0",
"ts-node": "^8.9.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"cross-env": "^7.0.2",
"escape-string-regexp": "^4.0.0",
"lit-element": "^2.3.1",
"lodash": "^4.17.15",
"vue": "^2.6.11"
}
}