-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.48 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.48 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
{
"name": "eid-wallet",
"version": "0.7.1",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && npx @biomejs/biome check ./src",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "npx @biomejs/biome format --write ./src",
"check-format": "npx @biomejs/biome format ./src",
"lint": "npx @biomejs/biome lint --write ./src",
"check-lint": "npx @biomejs/biome lint ./src",
"tauri": "tauri",
"storybook": "svelte-kit sync && storybook dev -p 6006",
"build-storybook": "storybook build",
"build:apk": "npm run tauri android build -- --apk --target aarch64 --target armv7",
"build:aab": "npm run tauri android build -- --aab --target aarch64 --target armv7"
},
"license": "MIT",
"dependencies": {
"@auvo/tauri-plugin-crypto-hw-api": "^0.1.0",
"@didit-protocol/sdk-web": "^0.1.6",
"@hugeicons/core-free-icons": "^1.0.13",
"@hugeicons/svelte": "^1.0.2",
"@iconify/svelte": "^5.0.1",
"@ngneat/falso": "^7.3.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-barcode-scanner": "^2.4.2",
"@tauri-apps/plugin-biometric": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@choochmeque/tauri-plugin-notifications-api": "^0.4.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-store": "^2.4.1",
"@veriff/incontext-sdk": "^2.4.0",
"@veriff/js-sdk": "^1.5.1",
"axios": "^1.6.7",
"blindvote": "workspace:*",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"flag-icons": "^7.3.2",
"graphql-request": "^6.1.0",
"html5-qrcode": "^2.3.8",
"import": "^0.0.6",
"jose": "^5.2.0",
"svelte-loading-spinners": "^0.3.6",
"svelte-qrcode": "^1.0.1",
"tailwind-merge": "^3.0.2",
"ts-md5": "^2.0.1",
"uuid": "^11.1.0",
"wallet-sdk": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/addon-interactions": "^8.6.7",
"@storybook/blocks": "^8.6.7",
"@storybook/experimental-addon-test": "^8.6.7",
"@storybook/svelte": "^8.6.7",
"@storybook/sveltekit": "^8.6.7",
"@storybook/test": "^8.6.7",
"@storybook/testing-library": "^0.2.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.14",
"@tauri-apps/cli": "^2.10.0",
"@types/node": "^22.13.10",
"@vitest/browser": "^3.0.9",
"@vitest/coverage-v8": "^3.0.9",
"autoprefixer": "^10.4.21",
"cupertino-pane": "^1.4.22",
"playwright": "^1.51.1",
"postcss": "^8.5.3",
"storybook": "^8.6.7",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-gestures": "^5.1.3",
"tailwindcss": "^4.0.14",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-plugin-node-polyfills": "^0.24.0",
"vitest": "^3.0.9"
}
}