-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.68 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
75
76
77
78
79
80
81
82
83
84
{
"name": "studentcompanion",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "npm run test:integration && npm run test:unit",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@playwright/test": "^1.28.1",
"@svelte-put/qr": "^1.2.1",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.20.4",
"@types/dompurify": "^3.0.5",
"@types/sanitize-html": "^2.11.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.0.0",
"vite": "^4.5.0",
"vitest": "^0.32.2"
},
"type": "module",
"dependencies": {
"@capacitor/android": "^6.1.2",
"@capacitor/app": "^6.0.1",
"@capacitor/browser": "^6.0.2",
"@capacitor/clipboard": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/keyboard": "^6.0.2",
"@capacitor/local-notifications": "^6.1.0",
"@capacitor/network": "^6.0.0",
"@capacitor/preferences": "^6.0.0",
"@capacitor/push-notifications": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@capacitor/toast": "^6.0.0",
"@capawesome/capacitor-app-update": "^6.0.0",
"@hugotomazi/capacitor-navigation-bar": "^4.0.0",
"@ionic/core": "7.8.5",
"@ionic/pwa-elements": "^3.2.2",
"@protontech/jsmimeparser": "^3.0.1",
"@sveltejs/adapter-auto": "^2.1.0",
"axios": "^1.5.1",
"axios-cookiejar-support": "^4.0.7",
"base64url": "^3.0.1",
"capacitor-native-settings": "^6.0.0",
"chart.js": "^4.4.0",
"cheerio": "1.0.0-rc.12",
"cross-fetch": "^4.0.0",
"dexie": "^4.0.4",
"dompurify": "^3.1.0",
"fetch-cookie": "^2.1.0",
"fuse.js": "^7.0.0",
"imap-simple": "^5.1.0",
"imapflow": "^1.0.158",
"ionic-svelte": "^0.5.82",
"ionicons": "^7.2.2",
"js-circle-progress": "^1.0.0-beta.0",
"js-sha256": "^0.11.0",
"jwt-decode": "^4.0.0",
"leaflet": "^1.9.4",
"punycode": "^2.3.1",
"qrcode": "^1.5.3",
"svelte-persisted-store": "^0.7.0",
"sveltekit-i18n": "^2.4.2",
"swiper": "^11.1.1",
"tough-cookie": "^4.1.3",
"vite-plugin-node-polyfills": "^0.17.0"
}
}