yunohost-admin/app/package.json

101 lines
2.7 KiB
JSON
Raw Normal View History

2020-07-06 19:08:34 +02:00
{
"name": "yunohost-admin",
"version": "0.1.0",
"private": true,
2020-07-06 19:22:25 +02:00
"description": "YunoHost Admin web interface",
"author": "Yunohost",
2020-07-06 19:08:34 +02:00
"scripts": {
2021-06-03 18:23:40 +02:00
"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'"
2020-07-06 19:08:34 +02:00
},
"dependencies": {
2021-03-19 19:44:32 +01:00
"bootstrap-vue": "^2.21.2",
"core-js": "^3.9.1",
"date-fns": "^2.19.0",
"firacode": "^5.2.0",
2021-03-19 19:44:32 +01:00
"fontsource-firago": "^3.1.5",
2020-07-07 21:57:00 +02:00
"fork-awesome": "^1.1.7",
"vue": "^2.6.12",
2021-03-19 19:44:32 +01:00
"vue-i18n": "^8.24.1",
"vue-router": "^3.5.1",
2020-11-03 20:22:54 +01:00
"vuelidate": "^0.7.6",
2021-03-19 19:44:32 +01:00
"vuex": "^3.6.2"
2020-07-06 19:08:34 +02:00
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
2021-03-19 19:44:32 +01:00
"@vue/cli-plugin-router": "^4.5.12",
"@vue/cli-plugin-vuex": "^4.5.12",
2020-07-06 19:08:34 +02:00
"@vue/cli-service": "~4.4.0",
"babel-eslint": "^10.1.0",
2021-03-19 19:44:32 +01:00
"bootstrap": "^4.6.0",
2020-07-06 19:08:34 +02:00
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
2020-07-06 19:22:25 +02:00
"popper.js": "^1.16.0",
"portal-vue": "^2.1.6",
2021-03-19 19:44:32 +01:00
"sass": "^1.32.8",
2020-07-06 19:22:25 +02:00
"sass-loader": "^8.0.0",
2020-10-12 17:32:14 +02:00
"sass-resources-loader": "^2.1.1",
"standard": "^14.3.4",
2020-07-06 19:22:25 +02:00
"vue-cli-plugin-bootstrap-vue": "~0.6.0",
2020-07-06 20:13:01 +02:00
"vue-cli-plugin-i18n": "~1.0.1",
"vue-template-compiler": "^2.6.12"
2020-07-06 19:08:34 +02:00
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/strongly-recommended",
"eslint:recommended",
"standard"
2020-07-06 19:08:34 +02:00
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/max-attributes-per-line": [
"error",
{
"singleline": 3,
"multiline": {
"max": 3,
"allowFirstLine": true
}
}
],
2021-05-01 13:04:06 +02:00
"no-console": "warn",
"template-curly-spacing": "off",
2020-11-03 20:22:54 +01:00
"camelcase": "warn",
2020-10-12 17:32:14 +02:00
"indent": "off",
"no-irregular-whitespace": "off",
2020-11-03 20:22:54 +01:00
"no-unused-vars": "warn",
"quotes": "warn",
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
]
}
2020-07-06 19:08:34 +02:00
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
2020-07-06 19:22:25 +02:00
],
"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"
}
2020-07-06 19:08:34 +02:00
}