-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.42 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
{
"name": "dahenfeld",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"prepare": "cypress install",
"test:e2e": "start-server-and-test preview 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",
"type-check": "vue-tsc --build",
"lint": "eslint .",
"fix-lint": "eslint . --fix",
"format": "prettier --write src/",
"format:check:ci": "npx prettier --check src"
},
"dependencies": {
"@capacitor/android": "^8.3.0",
"@capacitor/app": "8.1.0",
"@capacitor/core": "8.3.0",
"@capacitor/device": "^8.0.2",
"@capacitor/haptics": "8.0.2",
"@capacitor/ios": "8.3.0",
"@capacitor/keyboard": "8.0.2",
"@capacitor/push-notifications": "^8.0.3",
"@capacitor/status-bar": "8.0.2",
"@capawesome/capacitor-android-edge-to-edge-support": "^8.0.6",
"@globalhive/vuejs-tour": "^3.0.1",
"@ionic/vue": "^8.8.3",
"@ionic/vue-router": "^8.8.3",
"dotenv": "^17.4.1",
"firebase": "^12.11.0",
"lg-thumbnail": "^1.2.1",
"lg-zoom": "^1.3.0",
"lightgallery": "^2.9.0",
"ol": "^10.8.0",
"ol-contextmenu": "^6.0.0",
"ol-ext": "^4.0.38",
"pinia": "^3.0.4",
"swiper": "^12.1.3",
"vue": "^3.5.32",
"vue-router": "^4.6.4",
"vue3-google-map": "^0.27.1",
"vue3-openlayers": "^12.2.2"
},
"devDependencies": {
"@capacitor/cli": "8.3.0",
"@tsconfig/node22": "^22.0.5",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.5.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/eslint-plugin": "^1.6.14",
"@vue/cli-service": "5.0.9",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress": "^15.13.0",
"eslint": "^10.2.0",
"eslint-plugin-cypress": "^6.2.3",
"eslint-plugin-vue": "~10.8.0",
"jiti": "^2.6.1",
"jsdom": "^28.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "3.8.1",
"sass-embedded": "^1.99.0",
"start-server-and-test": "^2.1.3",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^8.1.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
}
}