-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 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
{
"name": "drill-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"preinstall": "node scripts/guard-install.js",
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"test:unit": "vitest",
"preview": "vite preview --host 0.0.0.0",
"preview:ci": "npm run build-only && vite preview --host 0.0.0.0",
"test:e2e": "start-server-and-test preview:ci http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build --mode production",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix --cache",
"format": "prettier --write src/"
},
"dependencies": {
"ol": "^10.8.0",
"ol-contextmenu": "^6.0.0",
"pinia": "^3.0.4",
"vue": "^3.5.33",
"vue-i18n": "^11.3.2",
"vue-router": "^5.0.6",
"vue3-openlayers": "^12.2.2"
},
"overrides": {
"jspdf": "^4.1.0",
"axios": "1.15.0",
"minimatch@3": {
"brace-expansion": "1.1.13"
}
},
"devDependencies": {
"@pinia/testing": "^1.0.3",
"@tsconfig/node22": "^22.0.5",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/eslint-plugin": "^1.6.16",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.8",
"@vue/tsconfig": "^0.9.1",
"cypress": "^15.13.1",
"eslint": "^10.2.1",
"eslint-plugin-cypress": "^6.3.1",
"eslint-plugin-vue": "~10.8.0",
"fast-check": "^4.7.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.2",
"json-server": "^1.0.0-beta.15",
"npm-run-all2": "^8.0.4",
"prettier": "3.8.3",
"start-server-and-test": "^3.0.2",
"typescript": "~6.0.3",
"vite": "^8.0.8",
"vite-plugin-vue-devtools": "^8.1.1",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.6"
}
}