-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.54 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
{
"name": "members-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "nightwatch tests/e2e/*",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix"
},
"dependencies": {
"@primevue/themes": "^4.2.5",
"axios": "^1.7.7",
"detect-inapp": "^1.4.0",
"firebase": "^11.0.1",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"pica": "^9.0.1",
"pinia": "^2.2.4",
"primevue": "^4.2.5",
"pug": "^3.0.3",
"semantic-ui-css": "^2.5.0",
"vue": "^3.5.12",
"vue-gtag": "^2.0.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@nightwatch/vue": "^3.1.2",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.11",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/eslint-plugin": "1.1.7",
"@vue/eslint-config-typescript": "^14.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"chromedriver": "^129.0.4",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"geckodriver": "^4.5.1",
"jsdom": "^25.0.1",
"nightwatch": "^3.8.0",
"npm-run-all2": "^6.2.3",
"ts-node": "^10.9.2",
"typescript": "~5.5.4",
"vite": "^5.4.8",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-nightwatch": "^0.4.6",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
}
}