happyDomain/ui/package.json

78 lines
1.8 KiB
JSON
Raw Normal View History

2019-09-09 15:03:10 +00:00
{
2020-05-18 10:29:16 +00:00
"name": "happyDNS",
2019-09-09 15:03:10 +00:00
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
2020-08-26 16:56:13 +00:00
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
2019-09-09 15:03:10 +00:00
},
"dependencies": {
2020-10-26 10:46:42 +00:00
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.18.1",
2020-04-17 15:04:11 +00:00
"vue": "^2.6.11",
2020-10-26 10:46:42 +00:00
"vue-i18n": "^8.22.1",
2020-11-17 00:25:37 +00:00
"vue-router": "^3.4.8",
2020-10-26 12:01:22 +00:00
"vuex": "^3.5.1"
2019-09-09 15:03:10 +00:00
},
"devDependencies": {
2020-08-26 16:56:13 +00:00
"@intlify/vue-i18n-loader": "^1.0.0",
2020-10-26 10:46:42 +00:00
"@vue/cli-plugin-eslint": "^4.5.8",
"@vue/cli-plugin-router": "^4.5.8",
2020-10-26 12:01:22 +00:00
"@vue/cli-plugin-vuex": "^4.5.8",
2020-10-26 10:46:42 +00:00
"@vue/cli-service": "^4.5.8",
2021-01-03 21:43:07 +00:00
"@vue/eslint-config-standard": "^6.0.0",
2019-09-09 15:03:10 +00:00
"babel-eslint": "^10.0.1",
2020-11-17 00:25:37 +00:00
"eslint": "^7.12.1",
2020-07-06 09:07:56 +00:00
"eslint-plugin-import": "^2.22.0",
2020-05-07 11:12:42 +00:00
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
2021-01-03 21:43:07 +00:00
"eslint-plugin-standard": "^5.0.0",
2020-10-26 10:46:42 +00:00
"eslint-plugin-vue": "^7.1.0",
2020-11-17 00:25:37 +00:00
"lint-staged": "^10.5.1",
2021-01-03 21:43:07 +00:00
"node-sass": "^5.0.0",
2020-05-18 10:29:16 +00:00
"register-service-worker": "^1.7.1",
2020-11-17 00:25:37 +00:00
"sass-loader": "^10.0.5",
2020-08-26 16:56:13 +00:00
"vue-cli-plugin-i18n": "^1.0.1",
2020-05-18 10:29:16 +00:00
"vue-template-compiler": "^2.6.10",
2021-01-03 21:43:07 +00:00
"workbox-webpack-plugin": "^6.0.2"
2019-09-09 15:03:10 +00:00
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
2020-05-07 11:18:04 +00:00
"plugin:vue/recommended",
2019-09-09 15:03:10 +00:00
"@vue/standard"
],
"parserOptions": {
"parser": "babel-eslint"
2020-05-07 11:18:04 +00:00
},
"rules": {
"vue/html-closing-bracket-newline": "off",
"vue/max-attributes-per-line": "off"
2019-09-09 15:03:10 +00:00
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}