-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
116 lines (116 loc) · 3.65 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "shockwallet",
"private": true,
"version": "0.0.1",
"scripts": {
"start": "vite",
"start:22k": "vite --port 22000",
"dev": "vite",
"build": "node ./preBuild/preBuild.ts && ionic cap build",
"prebuild": "node ./preBuild/preBuild.ts",
"preview": "vite preview",
"test.e2e": "cypress run",
"test.unit": "vitest",
"lint": "eslint . --ext .ts",
"cypress:open": "cypress open"
},
"dependencies": {
"@capacitor-mlkit/barcode-scanning": "^5.4.0",
"@capacitor/android": "5.4.0",
"@capacitor/app": "5.0.6",
"@capacitor/browser": "^5.2.0",
"@capacitor/camera": "^5.0.10",
"@capacitor/clipboard": "^5.0.6",
"@capacitor/core": "5.7.8",
"@capacitor/filesystem": "^5.1.4",
"@capacitor/haptics": "5.0.6",
"@capacitor/ios": "5.4.0",
"@capacitor/keyboard": "5.0.6",
"@capacitor/preferences": "^5.0.6",
"@capacitor/share": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@gandlaf21/bolt11-decode": "^3.0.6",
"@ionic-native/camera": "^5.36.0",
"@ionic/pwa-elements": "^3.2.2",
"@ionic/react": "^8.3.0",
"@ionic/react-router": "^8.3.0",
"@noble/curves": "^1.5.0",
"@noble/hashes": "^1.5.0",
"@noble/secp256k1": "^2.0.0",
"@reduxjs/toolkit": "^1.9.5",
"@scure/base": "^1.1.3",
"@stablelib/xchacha20": "^1.0.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/crypto-js": "^4.1.3",
"@types/file-saver": "^2.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^16.11.25",
"@types/react": "^17.0.39",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^17.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/secp256k1": "^4.0.3",
"@types/sortablejs": "^1.15.2",
"@types/styled-components": "^5.1.26",
"antd": "^5.11.1",
"axios": "^1.5.0",
"bech32": "^2.0.0",
"bitcoin-address-validation": "^2.2.3",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"crypto-js": "^4.2.0",
"deep-diff": "^1.0.2",
"dotenv": "^16.4.5",
"file-saver": "^2.0.5",
"framer-motion": "^10.17.9",
"html5-qrcode": "^2.3.8",
"i": "^0.3.7",
"ionicons": "^7.0.0",
"moment": "^2.29.4",
"nostr-tools": "github:shocknet/nostr-tools#ef16463592e2f7b5bf18abc86ff974615d64bb7d",
"npm": "^10.3.0",
"qr-scanner": "^1.4.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-qr-code": "^2.0.12",
"react-redux": "^8.1.2",
"react-toastify": "^10.0.4",
"reactjs-qr-reader": "^1.1.0",
"sortablejs": "^1.15.1",
"styled-components": "^6.0.8",
"uuid": "^10.0.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "5.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/deep-diff": "^1.0.5",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-react": "^4.0.1",
"cypress": "^13.14.0",
"eslint": "^8.56.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^22.1.0",
"sass": "^1.67.0",
"typescript": "^5.3.3",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^0.32.2"
},
"description": "An Ionic project"
}