-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.66 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.66 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@geode/opengeodeweb-front",
"version": "0.0.0",
"description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
"homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
"bugs": {
"url": "https://github.com/Geode-solutions/OpenGeodeWeb-Front/issues"
},
"license": "MIT",
"author": {
"name": "Geode-solutions",
"email": "contact@geode-solutions.com",
"url": "https://geode-solutions.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Geode-solutions/OpenGeodeWeb-Front.git"
},
"type": "module",
"main": "./nuxt.config.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "npm run test:unit",
"tests": "vitest --config ./tests/vitest.config.js",
"test:unit": "npm run tests --project unit",
"test:integration": "npm run tests --project integration",
"geode_objects": "node scripts/generate_geode_objects.js && prettier ./assets/geode_objects.js --write",
"build": ""
},
"dependencies": {
"@geode/opengeodeweb-back": "0.0.0",
"@geode/opengeodeweb-viewer": "0.0.0",
"@kitware/vtk.js": "33.3.0",
"@mdi/font": "7.4.47",
"@pinia/nuxt": "0.11.3",
"@types/node": "22.15.3",
"@vueuse/components": "13.1.0",
"@vueuse/nuxt": "13.1.0",
"@vueuse/rxjs": "^14.1.0",
"ajv": "8.17.1",
"dexie": "4.2.1",
"get-port-please": "3.2.0",
"is-electron": "2.2.2",
"js-file-download": "0.4.12",
"nuxt": "4.2.2",
"p-timeout": "7.0.1",
"pinia": "3.0.4",
"rimraf": "6.1.3",
"rxjs": "7.8.2",
"sass": "1.87.0",
"semver": "7.7.1",
"uuid": "11.1.0",
"vue3-carousel": "0.3.4",
"vuetify": "3.10.11",
"vuetify-nuxt-module": "0.18.7",
"ws": "8.18.3",
"wslink": "1.12.4"
},
"devDependencies": {
"@nuxt/test-utils": "3.21.0",
"@pinia/testing": "1.0.3",
"@vitejs/plugin-vue": "5.2.4",
"@vue/test-utils": "2.4.6",
"eslint": "9.26.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-prettier-vue": "5.0.0",
"eslint-plugin-vue": "10.1.0",
"eslint-plugin-vuetify": "2.5.2",
"happy-dom": "20.0.11",
"msw": "2.11.1",
"playwright-core": "1.52.0",
"prettier": "3.3.3",
"resize-observer-polyfill": "1.5.1",
"unplugin-auto-import": "20.0.0",
"vite": "6.3.5",
"vite-plugin-vuetify": "2.1.1",
"vitest": "4.0.15",
"vitest-environment-nuxt": "1.0.1",
"vitest-indexeddb": "^0.0.1"
},
"peerDependencies": {
"electron": "36.4.0"
},
"overrides": {
"vue": "latest"
}
}