mirror of https://github.com/Lissy93/dashy.git
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"name": "Dashy",
|
|
"version": "1.9.2",
|
|
"license": "MIT",
|
|
"main": "server",
|
|
"author": "Alicia Sykes <alicia@omg.lol> (https://aliciasykes.com)",
|
|
"scripts": {
|
|
"start": "node server",
|
|
"dev": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint",
|
|
"pm2-start": "npx pm2 start server.js",
|
|
"build-watch": "vue-cli-service build --watch --mode production",
|
|
"build-and-start": "npm-run-all --parallel build-watch start",
|
|
"validate-config": "node services/config-validator",
|
|
"health-check": "node services/healthcheck",
|
|
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps"
|
|
},
|
|
"dependencies": {
|
|
"@formschema/native": "^2.0.0-beta.5",
|
|
"@sentry/tracing": "^6.13.1",
|
|
"@sentry/vue": "^6.13.1",
|
|
"ajv": "^8.6.3",
|
|
"axios": "^0.23.0",
|
|
"connect-history-api-fallback": "^1.6.0",
|
|
"crypto-js": "^4.1.1",
|
|
"express": "^4.17.1",
|
|
"js-yaml": "^4.1.0",
|
|
"keycloak-js": "^15.0.2",
|
|
"register-service-worker": "^1.6.2",
|
|
"remedial": "^1.0.8",
|
|
"rsup-progress": "^2.0.4",
|
|
"simple-icons": "^5.14.0",
|
|
"v-jsoneditor": "^1.4.2",
|
|
"v-tooltip": "^2.1.3",
|
|
"vue": "^2.6.10",
|
|
"vue-i18n": "^8.25.1",
|
|
"vue-js-modal": "^2.0.0-rc.6",
|
|
"vue-json-tree-view": "^2.1.6",
|
|
"vue-material-tabs": "0.1.5",
|
|
"vue-router": "^3.0.3",
|
|
"vue-select": "^3.13.0",
|
|
"vue-swatches": "^2.1.1",
|
|
"vue-toasted": "^1.1.28",
|
|
"vuex": "^3.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@architect/sandbox": "^3.7.4",
|
|
"@vue/cli-plugin-babel": "^4.5.12",
|
|
"@vue/cli-plugin-eslint": "^4.5.12",
|
|
"@vue/cli-plugin-pwa": "^4.5.12",
|
|
"@vue/cli-service": "^4.5.12",
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"eslint": "^7.24.0",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-plugin-vue": "^7.9.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"progress-bar-webpack-plugin": "^2.1.0",
|
|
"sass": "^1.38.0",
|
|
"sass-loader": "^7.1.0",
|
|
"vue-cli-plugin-yaml": "^1.0.2",
|
|
"vue-svg-loader": "^0.16.0",
|
|
"vue-template-compiler": "^2.6.10"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "yarn lint"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/essential",
|
|
"@vue/standard",
|
|
"airbnb-base"
|
|
],
|
|
"rules": {
|
|
"import/no-unresolved": "off",
|
|
"import/extensions": "off",
|
|
"arrow-parens": 0,
|
|
"no-else-return": 0
|
|
},
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
}
|
|
},
|
|
"postcss": {
|
|
"plugins": {
|
|
"autoprefixer": {}
|
|
}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions"
|
|
]
|
|
} |