LiveAtlas/package.json

73 lines
2.1 KiB
JSON
Raw Normal View History

2020-11-20 18:43:30 +00:00
{
2020-12-17 14:48:36 +00:00
"name": "live-atlas",
2021-12-23 23:08:05 +00:00
"version": "2.0.1",
2020-12-19 01:42:14 +00:00
"private": false,
2020-11-20 18:43:30 +00:00
"scripts": {
2021-05-15 19:25:03 +00:00
"serve": "vite",
"preview": "vite preview --port 8082",
2021-09-10 14:32:48 +00:00
"test": "jest",
2021-10-01 12:37:28 +00:00
"clean": "rimraf dist java/target/resources",
"copy": "cpy plugin.yml dist java/target/resources --parents && rimraf java/target/resources/assets/*.svg",
2021-10-01 13:24:18 +00:00
"build": "npm run clean && vue-tsc --noEmit && vite build --out-dir dist && npm-run-all copy mvn",
2021-05-27 13:25:33 +00:00
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint -ext .ts,.vue src --fix",
2021-10-01 13:24:18 +00:00
"mvn": "cd java && mvn package && cd ..",
2021-05-25 13:21:37 +00:00
"postinstall": "patch-package"
2020-11-20 18:43:30 +00:00
},
2021-05-25 12:15:47 +00:00
"dependencies": {
"@kyvg/vue3-notification": "2.3.0",
"@soerenmartius/vue3-clipboard": "^0.1",
2021-07-22 15:15:55 +00:00
"leaflet": "git+https://github.com/JLyne/leaflet.git",
2022-01-17 15:15:00 +00:00
"lodash.debounce": "^4.0.8",
2021-09-08 18:28:39 +00:00
"modern-normalize": "^1.1.0",
"vue": "^3.2.27",
"vuex": "^4.0"
2021-05-25 12:15:47 +00:00
},
"devDependencies": {
"@types/dynmap": "^3.1.1",
"@types/jest": "^27.4.0",
2021-09-12 19:37:07 +00:00
"@types/jest-in-case": "^1.0.5",
"@types/leaflet": "1.7.8",
2022-01-17 15:15:00 +00:00
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9",
"@typescript-eslint/parser": "^5.9",
"@vitejs/plugin-vue": "^2.0",
"@vue/compiler-sfc": "^3.2.21",
"@vue/eslint-config-typescript": "^10.0",
"@vue/test-utils": "^2.0.0-rc.18",
2021-11-07 20:25:31 +00:00
"@vue/vue3-jest": "^27.0.0-alpha.1",
2021-10-01 13:31:41 +00:00
"cpy-cli": "^3.1.1",
"eslint": "^8.6",
"eslint-plugin-vue": "^8.0",
"jest": "^27.4.7",
2021-09-12 19:37:07 +00:00
"jest-in-case": "^1.0.2",
2021-10-01 12:37:28 +00:00
"npm-run-all": "^4.1.5",
"patch-package": "^6.4",
2021-10-01 12:37:28 +00:00
"rimraf": "^3.0.2",
"rollup-plugin-analyzer": "^4.0",
"sass": "^1.48",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5",
"vite": "^2.7.10",
"vite-plugin-svg-sprite-component": "^1.0",
"vue-tsc": "0.30.2"
2020-11-20 18:43:30 +00:00
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
2020-11-20 21:47:56 +00:00
"eslint:recommended",
"@vue/typescript"
2020-11-20 18:43:30 +00:00
],
"parserOptions": {
2020-11-20 21:47:56 +00:00
"parser": "@typescript-eslint/parser"
2020-11-20 18:43:30 +00:00
},
"rules": {}
2021-05-25 12:15:47 +00:00
}
2020-11-20 18:43:30 +00:00
}