This repository was archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.37 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.37 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
93
94
95
{
"name": "~whattheduck",
"type": "module",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"whattheduck": "concurrently -p \"[whattheduck-{name}]\" --kill-others-on-fail -n front,web \"pnpm dev\" \"pnpm -F ~web web\"",
"whattheduck-android": "concurrently -p \"[whattheduck-{name}]\" --kill-others-on-fail -n front+web,android \"pnpm whattheduck\" \"ionic cap run android --external --target Pixel_3_API_31 --livereload --public-host=192.168.1.211\"",
"lint": "eslint --fix .",
"dev": "concurrently -n vite,vue-tsc \"vite --port 8003 --host\" \"vue-tsc --noEmit --watch\"",
"build": "vue-tsc --noEmit && vite build",
"i-next": "for dep in $(jq -r '.dependencies | to_entries[] | select(.value == \"next\") | .key' package.json); do pnpm install \"${dep}@latest\"; done",
"ionic:build": "npm run build",
"preview": "vite preview",
"test:e2e": "cypress run",
"test:unit": "vitest",
"story:dev": "histoire dev"
},
"dependencies": {
"@capacitor-community/camera-preview": "^6.0.0",
"@capacitor-community/sqlite": "5.7.3-3",
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/camera": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
"@capacitor/preferences": "^6.0.0",
"@capacitor/splash-screen": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@capawesome/capacitor-file-picker": "^6.0.0",
"@ionic/pwa-elements": "^3.3.0",
"@ionic/storage": "^4.0.0",
"@ionic/vue": "^8.1.2",
"@ionic/vue-router": "^8.1.2",
"@nanoandrew4/vue3-carousel-3d": "^1.0.0",
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
"chart.js": "^4.4.3",
"dayjs": "^1.11.11",
"ionicons": "^7.4.0",
"js-cookie": "^3.0.5",
"localforage-cordovasqlitedriver": "^1.8.0",
"pinia": "^2.1.7",
"sass": "^1.77.2",
"universal-cookie": "^7.1.4",
"vue": "^3.4.27",
"vue-chartjs": "^5.3.1",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"~dm-types": "workspace:*",
"~prisma-clients": "workspace:*",
"~socket.io-client-services": "workspace:*",
"~socket.io-services": "workspace:*",
"~web": "workspace:*"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@histoire/plugin-vue": "^0.17.17",
"@ionic/prettier-config": "^4.0.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^18.19.33",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-macros/reactivity-transform": "^0.4.5",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"concurrently": "^8.2.2",
"cypress": "^13.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"eslint-plugin-vue": "^9.26.0",
"histoire": "^0.17.17",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.19"
},
"description": "What The Duck",
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@antfu"
}
}