-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 1.9 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
67
68
69
70
71
72
73
74
{
"name": "dkg-edge-node",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:e2e": "cypress run",
"test:unit": "vitest",
"format": "prettier -w .",
"lint": "eslint .",
"start-electron": "electron ."
},
"dependencies": {
"@capacitor/app": "6.0.0",
"@capacitor/core": "6.1.0",
"@capacitor/haptics": "6.0.0",
"@capacitor/keyboard": "6.0.1",
"@capacitor/status-bar": "6.0.0",
"@element-plus/icons-vue": "^2.3.1",
"@ionic/vue": "^8.0.0",
"@ionic/vue-router": "^8.0.0",
"@lottiefiles/dotlottie-vue": "^0.4.14",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.3",
"element-plus": "^2.7.6",
"ionicons": "^7.0.0",
"isomorphic-dompurify": "^2.12.0",
"js-cookie": "^3.0.5",
"laravel-echo": "^1.16.1",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"seamless-scroll-polyfill": "^2.3.4",
"socket.io-client": "^4.7.5",
"vue": "^3.3.0",
"vue-chartjs": "^5.3.1",
"vue-dragscroll": "^4.0.5",
"vue-router": "^4.2.0",
"vue3-ace-editor": "^2.2.4",
"vuex": "^4.0.2"
},
"devDependencies": {
"@capacitor/cli": "6.1.0",
"@vitejs/plugin-legacy": "^5.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.3.0",
"cypress": "^13.5.0",
"electron": "^31.1.0",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^22.1.0",
"prettier": "^3.3.3",
"sass": "^1.77.6",
"terser": "^5.4.0",
"typescript": "^5.1.6",
"vite": "~5.2.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.0.24"
},
"description": "An Ionic project",
"prettier": {
"singleQuote": false,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"printWidth": 80,
"trailingComma": "all"
}
}