mirror of https://github.com/Lissy93/dashy.git
87 lines
2.2 KiB
JSON
87 lines
2.2 KiB
JSON
{
|
|
"name": "Dashy",
|
|
"version": "1.2.5",
|
|
"license": "MIT",
|
|
"main": "server",
|
|
"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 src/utils/ConfigValidator",
|
|
"health-check": "node services/healthcheck"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.5.0",
|
|
"axios": "^0.21.1",
|
|
"body-parser": "^1.19.0",
|
|
"connect": "^3.7.0",
|
|
"crypto-js": "^4.0.0",
|
|
"highlight.js": "^11.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prismjs": "^1.23.0",
|
|
"register-service-worker": "^1.6.2",
|
|
"remedial": "^1.0.8",
|
|
"serve-static": "^1.14.1",
|
|
"v-jsoneditor": "^1.4.2",
|
|
"v-tooltip": "^2.1.3",
|
|
"vue": "^2.6.10",
|
|
"vue-cli-plugin-yaml": "^1.0.2",
|
|
"vue-js-modal": "^2.0.0-rc.6",
|
|
"vue-material-tabs": "^0.0.7",
|
|
"vue-prism-editor": "^1.2.2",
|
|
"vue-router": "^3.0.3",
|
|
"vue-select": "^3.11.2",
|
|
"vue-toasted": "^1.1.28"
|
|
},
|
|
"devDependencies": {
|
|
"@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",
|
|
"sass": "^1.18.0",
|
|
"sass-loader": "^7.1.0",
|
|
"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",
|
|
"arrow-parens": 0,
|
|
"no-else-return": 0
|
|
},
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
}
|
|
},
|
|
"postcss": {
|
|
"plugins": {
|
|
"autoprefixer": {}
|
|
}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions"
|
|
]
|
|
} |