| 1 |
{ |
| 2 |
"name": "hostinger-tools-plugin-vue", |
| 3 |
"private": true, |
| 4 |
"scripts": { |
| 5 |
"build": "webpack --mode production", |
| 6 |
"dev": "webpack --mode development --watch", |
| 7 |
"lint": "eslint . --ext .vue,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" |
| 8 |
}, |
| 9 |
"dependencies": { |
| 10 |
"@vue/tsconfig": "^0.4.0", |
| 11 |
"@vueuse/core": "^10.7.0", |
| 12 |
"axios": "^1.7.7", |
| 13 |
"bootstrap-scss": "^5.3.3", |
| 14 |
"pinia-plugin-persistedstate": "^3.2.1", |
| 15 |
"sass-loader": "^14.2.1", |
| 16 |
"terser-webpack-plugin": "^5.3.10", |
| 17 |
"vue-router": "^4.2.5", |
| 18 |
"vue3-toastify": "^0.2.1" |
| 19 |
}, |
| 20 |
"devDependencies": { |
| 21 |
"@babel/core": "^7.23.6", |
| 22 |
"@babel/preset-env": "^7.23.6", |
| 23 |
"@rushstack/eslint-patch": "^1.6.1", |
| 24 |
"@types/node": "^20.10.5", |
| 25 |
"@typescript-eslint/eslint-plugin": "^6.15.0", |
| 26 |
"@typescript-eslint/parser": "^6.15.0", |
| 27 |
"@vue/cli-plugin-eslint": "^5.0.8", |
| 28 |
"@vue/eslint-config-prettier": "^8.0.0", |
| 29 |
"@vue/eslint-config-typescript": "^12.0.0", |
| 30 |
"babel-loader": "^9.1.3", |
| 31 |
"css-loader": "^6.8.1", |
| 32 |
"css-minimizer-webpack-plugin": "^5.0.1", |
| 33 |
"eslint": "^8.56.0", |
| 34 |
"eslint-config-prettier": "^9.1.0", |
| 35 |
"eslint-plugin-import": "^2.29.1", |
| 36 |
"eslint-plugin-modules-newlines": "^0.0.7", |
| 37 |
"eslint-plugin-prettier": "^5.0.1", |
| 38 |
"eslint-plugin-unused-imports": "^3.0.0", |
| 39 |
"eslint-plugin-vue": "^9.19.2", |
| 40 |
"lodash": "^4.17.21", |
| 41 |
"mini-css-extract-plugin": "^2.7.6", |
| 42 |
"null-loader": "^4.0.1", |
| 43 |
"pinia": "^2.1.7", |
| 44 |
"sass": "^1.69.5", |
| 45 |
"terser": "^5.26.0", |
| 46 |
"ts-loader": "^9.5.0", |
| 47 |
"typescript": "^5.2.2", |
| 48 |
"vue": "^3.4.4", |
| 49 |
"vue-loader": "^17.4.2", |
| 50 |
"vue-style-loader": "^4.1.3", |
| 51 |
"webpack": "^5.94.0", |
| 52 |
"webpack-cli": "^5.1.4" |
| 53 |
}, |
| 54 |
"browserslist": [ |
| 55 |
"last 2 versions" |
| 56 |
], |
| 57 |
"babel": { |
| 58 |
"presets": [ |
| 59 |
"@babel/preset-env" |
| 60 |
] |
| 61 |
} |
| 62 |
} |
| 63 |
|