-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.14 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.14 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
{
"name": "qryptchat-web",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node server.js",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"icons:generate": "node scripts/generate-icons.js",
"icons:install": "scripts/install-desktop-icons.sh"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.3.3",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/svelte": "^5.2.8",
"@testing-library/user-event": "^14.6.1",
"@vite-pwa/sveltekit": "^1.0.0",
"@vitest/ui": "^3.2.4",
"chai": "^6.0.1",
"eslint": "^9.39.2",
"jsdom": "^26.1.0",
"mocha": "^11.7.5",
"msw": "^2.10.5",
"prettier": "^3.6.2",
"sharp": "^0.34.4",
"sinon": "^21.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^3.2.4",
"ws": "^8.18.3"
},
"dependencies": {
"@noble/ciphers": "^2.0.0",
"@noble/hashes": "^2.0.0",
"@profullstack/text-type-detection": "^1.0.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"dilithium-crystals": "^1.0.6",
"dotenv": "^17.2.2",
"form-data": "^4.0.4",
"mailgun.js": "^12.0.3",
"mlkem": "^2.5.0",
"openpgp": "^6.2.0",
"sveltekit-rate-limiter": "^0.7.0",
"twilio": "^5.12.0",
"uuid": "^11.1.0",
"webrtc-adapter": "^9.0.3"
},
"pnpm": {
"overrides": {
"glob": ">=10.5.0",
"jws": ">=3.2.3",
"js-yaml": ">=4.1.1",
"cookie": ">=0.7.0",
"diff": ">=8.0.3"
}
}
}