Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
fix: 3.4.3 upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
irfan-maulana-tkp committed Sep 2, 2019
1 parent 451f87c commit 0ca72ce
Show file tree
Hide file tree
Showing 3 changed files with 2,297 additions and 1,227 deletions.
67 changes: 41 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-currency-filter",
"description": "🍒 Lightweight vue currency filter based on accounting.js",
"version": "3.4.2",
"version": "3.4.3",
"license": "MIT",
"author": "Irfan Maulana (https://github.com/mazipan/)",
"homepage": "https://mazipan.github.io/vue-currency-filter/",
Expand Down Expand Up @@ -43,50 +43,65 @@
"lint-fix": "eslint --ext .js,.vue --ignore-path .eslintignore . --fix"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.5.1",
"autoprefixer": "^9.6.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "^8.0.5",
"babel-eslint": "^10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "^8.0.6",
"bulma-dracula": "^1.0.3",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"gh-pages": "2.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"gh-pages": "2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^9.2.5",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.11.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.0",
"typescript": "^3.6.2",
"vue": "^2.6.10",
"vue-google-adsense": "^1.5.1",
"vue-google-adsense": "^1.5.0",
"vue-highlightjs": "1.3.3",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-script2": "^2.0.3",
"vue-loader": "^15.7.1",
"vue-script2": "^2.1.0",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-serve": "^3.1.0"
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-serve": "^3.1.1"
},
"dependencies": {
"accounting": "0.4.1"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
39 changes: 39 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"compilerOptions": {
"esModuleInterop": true,
"importHelpers": true,
"declaration": true,
"declarationDir": "dist",
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"moduleResolution": "node",
"baseUrl": "./src",
"paths": {
"@/*": ["src/*"],
},
// "allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"sourceMap": true,
"outDir": "compiled",
"isolatedModules": false,
"pretty": true,
"typeRoots": ["./node_modules/@types", "./types"],
"types": ["jest"],
"lib": ["dom", "es2015", "es2016"]
},
"exclude": [
"node_modules",
"assets",
"demo",
"nuxt",
"test"
],
"include": ["types", "types/typings.d.ts"]
}
Loading

0 comments on commit 0ca72ce

Please sign in to comment.