mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
0521d053ce
This reverts commit 2be91dbfe7
.
102 lines
2.8 KiB
JSON
102 lines
2.8 KiB
JSON
{
|
|
"name": "yunohost-admin",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "YunoHost Admin web interface",
|
|
"author": "Yunohost",
|
|
"scripts": {
|
|
"serve": "./node_modules/@vue/cli-service/bin/vue-cli-service.js serve",
|
|
"build": "./node_modules/@vue/cli-service/bin/vue-cli-service.js build",
|
|
"lint": "./node_modules/@vue/cli-service/bin/vue-cli-service.js lint --no-fix",
|
|
"i18n": "./node_modules/@vue/cli-service/bin/vue-cli-service.js i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/*.json'",
|
|
"i18n:en": "./node_modules/@vue/cli-service/bin/vue-cli-service.js i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/en.json'"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap-vue": "^2.21.2",
|
|
"core-js": "^3.9.1",
|
|
"date-fns": "^2.19.0",
|
|
"firacode": "^5.2.0",
|
|
"fontsource-firago": "^3.1.5",
|
|
"fork-awesome": "^1.1.7",
|
|
"simple-evaluate": "^1.4.3",
|
|
"vue": "^2.6.12",
|
|
"vue-i18n": "^8.24.1",
|
|
"vue-router": "^3.5.1",
|
|
"vuelidate": "^0.7.6",
|
|
"vue-showdown": "^2.4.1",
|
|
"vuex": "^3.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-babel": "~4.5.13",
|
|
"@vue/cli-plugin-eslint": "^4.5.13",
|
|
"@vue/cli-plugin-router": "^4.5.13",
|
|
"@vue/cli-plugin-vuex": "^4.5.13",
|
|
"@vue/cli-service": "^4.5.13",
|
|
"babel-eslint": "^10.1.0",
|
|
"bootstrap": "^4.6.0",
|
|
"eslint": "^6.7.2",
|
|
"eslint-plugin-vue": "^6.2.2",
|
|
"popper.js": "^1.16.0",
|
|
"portal-vue": "^2.1.6",
|
|
"sass": "^1.32.8",
|
|
"sass-loader": "^8.0.0",
|
|
"sass-resources-loader": "^2.1.1",
|
|
"standard": "^14.3.4",
|
|
"vue-cli-plugin-bootstrap-vue": "~0.6.0",
|
|
"vue-cli-plugin-i18n": "~1.0.1",
|
|
"vue-template-compiler": "^2.6.12"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/strongly-recommended",
|
|
"eslint:recommended",
|
|
"standard"
|
|
],
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
},
|
|
"rules": {
|
|
"vue/max-attributes-per-line": [
|
|
"error",
|
|
{
|
|
"singleline": 3,
|
|
"multiline": {
|
|
"max": 3,
|
|
"allowFirstLine": true
|
|
}
|
|
}
|
|
],
|
|
"no-console": "warn",
|
|
"template-curly-spacing": "off",
|
|
"camelcase": "warn",
|
|
"indent": "off",
|
|
"no-irregular-whitespace": "off",
|
|
"no-unused-vars": "warn",
|
|
"quotes": "warn",
|
|
"no-multiple-empty-lines": [
|
|
"error",
|
|
{
|
|
"max": 2
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not dead"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/YunoHost/issues"
|
|
},
|
|
"homepage": "https://github.com/YunoHost/yunohost-admin",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/YunoHost/yunohost-admin"
|
|
}
|
|
}
|