forked from massalabs/gossip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.38 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.38 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
96
97
98
99
100
101
102
{
"name": "gossip",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier --write . && eslint . --fix",
"fmt:check": "prettier --check . && eslint .",
"preview": "vite preview",
"preview:host": "vite preview --host",
"prepare": "husky",
"wasm:build": "wasm-pack build --out-dir ../../src/assets/generated/wasm --target web wasm/main && rm -f src/assets/generated/wasm/.gitignore",
"wasm:test": "cargo test --workspace --manifest-path wasm/Cargo.toml --all-features --all-targets --verbose",
"wasm:clean": "rm -rf src/assets/generated/wasm",
"cap:sync": "cap sync",
"cap:sync:ios": "cap sync ios",
"cap:sync:android": "cap sync android",
"cap:open:ios": "cap open ios",
"cap:open:android": "cap open android",
"cap:build:ios": "npm run build && cap sync ios",
"cap:build:android": "npm run build && cap sync android",
"cap:run:ios": "npm run build && cap sync ios && cap run ios",
"cap:run:android": "npm run build && cap sync android && cap run android",
"cap:copy": "cap copy",
"cap:copy:ios": "cap copy ios",
"cap:copy:android": "cap copy android"
},
"dependencies": {
"@aparajita/capacitor-biometric-auth": "^9.1.2",
"@aparajita/capacitor-secure-storage": "^7.1.6",
"@capacitor/android": "^7.4.4",
"@capacitor/core": "^7.4.4",
"@capacitor/ios": "^7.4.4",
"@capacitor/status-bar": "^7.0.3",
"@massalabs/massa-web3": "^5.3.1-dev.20250925215116",
"@noble/hashes": "^1.8.0",
"@scure/base": "^2.0.0",
"@scure/bip32": "^2.0.0",
"@scure/bip39": "^2.0.0",
"@tailwindcss/vite": "^4.1.13",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"currency.js": "^2.0.4-8d9f8632",
"dexie": "^4.2.0",
"dexie-react-hooks": "^4.2.0",
"js-yaml": "^4.1.1",
"pbkdf2": "^3.1.5",
"qr-code-styling": "^1.9.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.9.6",
"react-scroll": "^1.9.3",
"varint": "^6.0.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@capacitor/cli": "^7.4.4",
"@eslint/js": "^9.18.0",
"@types/crypto-js": "^4.2.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.6.1",
"@types/pbkdf2": "^3.1.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-scroll": "^1.8.10",
"@types/varint": "^6.0.3",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"typescript": "~5.7.2",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.11",
"vite-plugin-image-optimizer": "^2.0.2",
"vite-plugin-mkcert": "^1.17.9",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-pwa": "^0.21.1",
"wasm-pack": "^0.13.1",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0"
},
"overrides": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
}
}