tracktracker/package.json

38 lines
951 B
JSON
Raw Normal View History

2020-01-13 11:20:35 +00:00
{
2022-07-05 22:20:12 +00:00
"name": "tracktracker",
"version": "0.1.0",
"type": "module",
2020-01-13 11:20:35 +00:00
"scripts": {
2021-05-16 10:01:51 +00:00
"back": "node --experimental-json-modules src/back",
2021-05-14 22:43:45 +00:00
"front:dev": "vite src/front",
"front:prod": "vite build src/front",
2020-01-15 23:34:47 +00:00
"lint": "eslint ."
2020-01-13 11:20:35 +00:00
},
"dependencies": {
"@turf/along": "^6.3.0",
"@turf/bearing": "^6.5.0",
"@turf/clone": "^6.5.0",
"@turf/helpers": "^6.3.0",
"@turf/length": "^6.3.0",
"@turf/projection": "^6.3.0",
"@turf/turf": "^6.3.0",
"axios": "^0.21.1",
"color": "^3.1.3",
"csv-parse": "^4.15.4",
"dijkstrajs": "^1.0.1",
2020-01-13 11:20:35 +00:00
"express": "^4.17.1",
"maplibre-gl": "^2.1.9",
"unzip-stream": "^0.3.1",
"vue": "^3.0.5"
2020-01-13 11:20:35 +00:00
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^7.26.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-jsdoc": "^34.0.1",
"eslint-plugin-node": "^11.1.0",
"vite": "^2.3.0"
2020-01-13 11:20:35 +00:00
}
}