forked from SpaceCowboy326/open_data_gvl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "open_data_gvl_map",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:host": "vite --host --port 4000",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/ --watch=false",
"test:unit:dev": "cross-env-shell OVERWRITE_TAPES=$OVERWRITE_TAPES \"vitest --environment jsdom --root src/\"",
"cypress:run": "start-test 'vite dev --port 4173 --host 127.0.0.1 --mode test' http://127.0.0.1:4173 'cypress run'",
"cypress:open": "start-test 'vite dev --port 4173 --host 127.0.0.1 --mode test' http://127.0.0.1:4173 'cypress open'",
"test:all": "run-p build test:unit test:e2e type-check lint-check",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --fix src/; prettier --write . --ignore-path .gitignore --ignore-path .prettierignore",
"lint-check": "eslint . --fix-dry-run src/ && prettier --check . --ignore-path .gitignore --ignore-path .prettierignore",
"talkback": "DIRECT=enabled tsx src/tests/support/talkback-server.ts",
"test:e2e": "start-test talkback http://127.0.0.1:9090 cypress:run",
"test:e2e:dev": "start-test talkback http://127.0.0.1:9090 cypress:open"
},
"dependencies": {
"@types/geojson": "^7946.0.15",
"flowbite": "^2.5.2",
"flowbite-vue": "^0.1.6",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"overrides": {
"eslint": "^9.17.0",
"typescript": "~5.6.3"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.7",
"@types/leaflet": "^1.9.15",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"axe-core": "^4.10.2",
"cross-env": "^7.0.3",
"cypress": "^13.17.0",
"cypress-axe": "^1.5.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"leaflet": "^1.9.4",
"npm-check-updates": "^17.1.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"start-server-and-test": "^2.0.9",
"tailwindcss": "^3.4.17",
"talkback": "^4.2.0",
"tsx": "^4.19.2",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
}
}