2020-11-20 18:43:30 +00:00
|
|
|
{
|
2020-12-17 14:48:36 +00:00
|
|
|
"name": "live-atlas",
|
2021-09-30 22:48:10 +00:00
|
|
|
"version": "2.0.0-beta.4",
|
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-05-15 19:25:03 +00:00
|
|
|
"build": "vue-tsc --noEmit && vite build --out-dir dist",
|
2021-05-27 13:25:33 +00:00
|
|
|
"lint": "eslint --ext .ts,.vue src",
|
|
|
|
"lint:fix": "eslint -ext .ts,.vue src --fix",
|
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": {
|
2021-07-19 14:25:43 +00:00
|
|
|
"@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",
|
2021-09-08 18:28:39 +00:00
|
|
|
"modern-normalize": "^1.1.0",
|
2021-11-12 13:26:14 +00:00
|
|
|
"vue": "^3.2.21",
|
2021-07-19 14:25:43 +00:00
|
|
|
"vuex": "^4.0"
|
2021-05-25 12:15:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-12 00:22:52 +00:00
|
|
|
"@types/dynmap": "^3.1.1",
|
2021-09-22 09:19:18 +00:00
|
|
|
"@types/jest": "^27.0.2",
|
2021-09-12 19:37:07 +00:00
|
|
|
"@types/jest-in-case": "^1.0.5",
|
2021-08-30 22:14:34 +00:00
|
|
|
"@types/leaflet": "1.7.5",
|
2021-11-08 22:15:27 +00:00
|
|
|
"@types/node": "^16.11.7",
|
2021-11-01 22:12:32 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.3",
|
2021-11-01 23:50:37 +00:00
|
|
|
"@typescript-eslint/parser": "^5.3",
|
2021-09-22 23:25:35 +00:00
|
|
|
"@vitejs/plugin-vue": "^1.9",
|
2021-11-02 22:14:05 +00:00
|
|
|
"@vue/compiler-sfc": "^3.2.21",
|
2021-10-31 20:14:17 +00:00
|
|
|
"@vue/eslint-config-typescript": "^9.0",
|
2021-10-14 14:07:48 +00:00
|
|
|
"@vue/test-utils": "^2.0.0-rc.16",
|
2021-11-08 22:14:45 +00:00
|
|
|
"eslint": "^8.2",
|
2021-10-20 21:52:21 +00:00
|
|
|
"eslint-plugin-vue": "^7.20",
|
2021-10-20 22:03:03 +00:00
|
|
|
"jest": "^27.3.1",
|
2021-09-12 19:37:07 +00:00
|
|
|
"jest-in-case": "^1.0.2",
|
2021-07-19 14:25:43 +00:00
|
|
|
"patch-package": "^6.4",
|
|
|
|
"rollup-plugin-analyzer": "^4.0",
|
2021-10-14 14:07:50 +00:00
|
|
|
"sass": "^1.43",
|
2021-10-18 22:11:59 +00:00
|
|
|
"ts-jest": "^27.0.7",
|
2021-10-22 22:10:29 +00:00
|
|
|
"ts-node": "^10.4.0",
|
2021-08-26 22:09:35 +00:00
|
|
|
"typescript": "^4.4",
|
2021-09-29 22:10:21 +00:00
|
|
|
"vite": "^2.6",
|
2021-07-19 14:25:43 +00:00
|
|
|
"vite-plugin-svg-sprite-component": "^1.0",
|
2021-09-10 14:32:48 +00:00
|
|
|
"vue-jest": "^5.0.0-alpha.10",
|
2021-11-12 13:27:28 +00:00
|
|
|
"vue-tsc": "0.29.4"
|
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
|
|
|
}
|