2019-07-19 16:07:26 +02:00
|
|
|
{
|
2024-03-04 14:00:17 +01:00
|
|
|
"name": "dashy",
|
2024-03-02 11:48:47 +01:00
|
|
|
"version": "2.1.2",
|
2021-06-04 21:16:54 +02:00
|
|
|
"license": "MIT",
|
2021-06-11 22:28:27 +02:00
|
|
|
"main": "server",
|
2021-11-06 23:34:42 +01:00
|
|
|
"author": "Alicia Sykes <alicia@omg.lol> (https://aliciasykes.com)",
|
2019-07-19 16:07:26 +02:00
|
|
|
"scripts": {
|
2024-03-03 17:53:01 +01:00
|
|
|
"start": "node server",
|
2019-07-20 22:50:29 +02:00
|
|
|
"dev": "vue-cli-service serve",
|
2024-03-04 14:47:15 +01:00
|
|
|
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
|
2021-06-20 17:58:03 +02:00
|
|
|
"lint": "vue-cli-service lint",
|
2021-06-14 21:46:59 +02:00
|
|
|
"pm2-start": "npx pm2 start server.js",
|
2021-06-20 17:58:03 +02:00
|
|
|
"build-watch": "vue-cli-service build --watch --mode production",
|
2024-03-04 21:07:34 +01:00
|
|
|
"watch-config": "node services/watch-for-changes",
|
2024-03-14 06:50:19 +01:00
|
|
|
"build-and-start": "NODE_OPTIONS=--openssl-legacy-provider npm-run-all --parallel build-watch start",
|
2021-07-25 18:42:01 +02:00
|
|
|
"validate-config": "node services/config-validator",
|
2021-08-19 22:16:32 +02:00
|
|
|
"health-check": "node services/healthcheck",
|
2024-03-03 17:53:01 +01:00
|
|
|
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps"
|
2019-07-19 16:07:26 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-24 18:06:05 +01:00
|
|
|
"@babel/core": "^7.0.0",
|
2022-02-04 23:22:30 +01:00
|
|
|
"@formschema/native": "^2.0.0-beta.6",
|
2024-02-24 18:06:05 +01:00
|
|
|
"@sentry/tracing": "^7.102.1",
|
|
|
|
"@sentry/vue": "^7.102.1",
|
2022-02-04 23:22:30 +01:00
|
|
|
"ajv": "^8.10.0",
|
2023-11-11 05:38:01 +01:00
|
|
|
"axios": "^1.6.0",
|
2021-10-13 21:02:46 +02:00
|
|
|
"connect-history-api-fallback": "^1.6.0",
|
2023-10-26 00:32:35 +02:00
|
|
|
"crypto-js": "^4.2.0",
|
2022-01-10 16:07:39 +01:00
|
|
|
"express": "^4.17.2",
|
2021-12-11 19:44:22 +01:00
|
|
|
"frappe-charts": "^1.6.2",
|
2021-06-11 16:23:25 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-02-09 13:38:57 +01:00
|
|
|
"keycloak-js": "^20.0.3",
|
2022-02-04 23:22:30 +01:00
|
|
|
"register-service-worker": "^1.7.2",
|
2021-05-16 19:29:30 +02:00
|
|
|
"remedial": "^1.0.8",
|
2024-02-24 15:37:55 +01:00
|
|
|
"rss-parser": "3.13.0",
|
2023-10-19 17:39:09 +02:00
|
|
|
"rsup-progress": "^3.2.0",
|
2022-12-01 07:30:03 +01:00
|
|
|
"simple-icons": "^7.19.0",
|
2022-02-04 23:22:30 +01:00
|
|
|
"v-jsoneditor": "^1.4.5",
|
2021-04-05 17:29:37 +02:00
|
|
|
"v-tooltip": "^2.1.3",
|
2022-07-23 06:25:08 +02:00
|
|
|
"vue": "^2.7.0",
|
2022-07-12 06:31:26 +02:00
|
|
|
"vue-i18n": "^8.27.2",
|
2022-02-04 23:22:30 +01:00
|
|
|
"vue-js-modal": "^2.0.1",
|
2021-10-22 01:23:10 +02:00
|
|
|
"vue-json-tree-view": "^2.1.6",
|
2021-08-05 21:15:21 +02:00
|
|
|
"vue-material-tabs": "0.1.5",
|
2022-02-04 23:22:30 +01:00
|
|
|
"vue-router": "^3.5.3",
|
2023-02-12 03:25:34 +01:00
|
|
|
"vue-select": "^3.20.2",
|
2021-07-16 22:09:52 +02:00
|
|
|
"vue-swatches": "^2.1.1",
|
2021-10-03 23:42:40 +02:00
|
|
|
"vue-toasted": "^1.1.28",
|
2024-02-24 15:37:55 +01:00
|
|
|
"vuex": "^3.6.2"
|
2019-07-19 16:07:26 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-20 14:17:36 +02:00
|
|
|
"@babel/preset-env": "^7.17.10",
|
2022-02-04 23:22:30 +01:00
|
|
|
"@vue/cli-plugin-babel": "^4.5.15",
|
|
|
|
"@vue/cli-plugin-eslint": "^4.5.15",
|
|
|
|
"@vue/cli-plugin-pwa": "^4.5.15",
|
|
|
|
"@vue/cli-service": "^4.5.15",
|
2019-07-19 16:07:26 +02:00
|
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
|
|
"babel-eslint": "^10.0.1",
|
2024-02-24 18:06:05 +01:00
|
|
|
"eslint": "^6.8.0",
|
2019-09-01 14:38:13 +02:00
|
|
|
"eslint-config-airbnb": "^18.0.1",
|
2021-04-16 19:43:33 +02:00
|
|
|
"eslint-plugin-vue": "^7.9.0",
|
2021-08-19 22:16:32 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"sass": "^1.38.0",
|
2019-07-19 16:07:26 +02:00
|
|
|
"sass-loader": "^7.1.0",
|
2021-08-19 22:16:32 +02:00
|
|
|
"vue-cli-plugin-yaml": "^1.0.2",
|
2021-04-04 23:17:10 +02:00
|
|
|
"vue-svg-loader": "^0.16.0",
|
2022-07-23 15:24:55 +02:00
|
|
|
"vue-template-compiler": "^2.7.0"
|
2019-07-19 16:07:26 +02:00
|
|
|
},
|
2022-02-04 23:22:30 +01:00
|
|
|
"engines": {
|
2024-02-24 18:06:05 +01:00
|
|
|
"node": ">=16.0.0 <21.6.2"
|
2022-02-04 23:22:30 +01:00
|
|
|
},
|
2019-07-19 16:07:26 +02:00
|
|
|
"eslintConfig": {
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:vue/essential",
|
2019-09-01 14:38:13 +02:00
|
|
|
"@vue/standard",
|
|
|
|
"airbnb-base"
|
2019-07-19 16:07:26 +02:00
|
|
|
],
|
2019-09-01 14:38:13 +02:00
|
|
|
"rules": {
|
2021-04-08 21:12:35 +02:00
|
|
|
"import/no-unresolved": "off",
|
2021-08-09 21:08:37 +02:00
|
|
|
"import/extensions": "off",
|
2021-05-02 14:52:30 +02:00
|
|
|
"arrow-parens": 0,
|
|
|
|
"no-else-return": 0
|
2019-09-01 14:38:13 +02:00
|
|
|
},
|
2019-07-19 16:07:26 +02:00
|
|
|
"parserOptions": {
|
|
|
|
"parser": "babel-eslint"
|
|
|
|
}
|
|
|
|
},
|
2022-05-20 14:17:36 +02:00
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"@vue/app",
|
|
|
|
"@babel/preset-env"
|
|
|
|
]
|
|
|
|
},
|
2019-07-19 16:07:26 +02:00
|
|
|
"postcss": {
|
|
|
|
"plugins": {
|
|
|
|
"autoprefixer": {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions"
|
|
|
|
]
|
2022-01-29 03:06:36 +01:00
|
|
|
}
|