forked from minotaur-ergo/minotaur-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.89 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
117
118
119
120
121
122
123
124
125
{
"name": "minotaur-wallet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@capacitor-community/barcode-scanner": "^3.0.1",
"@capacitor-community/electron": "^4.1.2",
"@capacitor-community/sqlite": "4.6.0",
"@capacitor/android": "^4.6.2",
"@capacitor/app": "^4.1.1",
"@capacitor/browser": "^4.1.1",
"@capacitor/camera": "^4.1.4",
"@capacitor/cli": "^4.6.2",
"@capacitor/clipboard": "^4.1.0",
"@capacitor/core": "^4.6.2",
"@capacitor/ios": "^4.6.2",
"@capacitor/status-bar": "^4.1.1",
"@capacitor/toast": "^4.1.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@zxing/browser": "^0.1.1",
"axios": "^1.2.3",
"bip32": "^3.1.0",
"bip39": "^3.0.4",
"blakejs": "^1.2.1",
"browserslist": "^4.21.4",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"capacitor-plugin-safe-area": "^1.0.1",
"clipboardy": "^3.0.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"ergo-lib-wasm-browser": "^0.22.0",
"generate-password": "^1.7.0",
"is-electron": "^2.2.1",
"json-bigint": "^1.0.0",
"notistack": "^2.0.8",
"process": "^0.11.10",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-loading": "^2.0.3",
"react-redux": "^8.0.5",
"react-router-dom": "^6.7.0",
"react-scripts": "^5.0.1",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"tiny-secp256k1": "^2.2.1",
"typeorm": "^0.3.11",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4",
"websocket-ts": "^1.1.1",
"zxing": "^0.1.2"
},
"scripts": {
"build:ext": "BUILD_PATH=extension node ./scripts/build-ext.js",
"build": "node ./scripts/build.js",
"clean": "rimraf ./build",
"coverage": "vitest run --coverage",
"eject": "react-scripts eject",
"lint": "npm run prettify && eslint --fix .",
"postinstall": "npx patch-package",
"prepare": "husky install",
"preprocess": "npx madge --circular --extensions ts --extensions tsx ./",
"prettify": "prettier --ignore-unknown --write .",
"start": "node ./scripts/start.js",
"sync": "npm run clean && npm run build && npx cap sync && npx cap update && cap sync electron && npx cap update electron",
"test": "vitest",
"type-check": "tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/chrome": "^0.0.209",
"@types/crypto-js": "^4.1.1",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.10",
"@types/sql.js": "^1.4.4",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.28.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"happy-dom": "^8.1.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"madge": "^5.0.1",
"msw": "^0.49.3",
"patch-package": "^6.5.1",
"path-browserify": "^1.0.1",
"prettier": "^2.8.3",
"rewire": "^6.0.0",
"rimraf": "^4.1.1",
"sql.js": "1.6.2",
"stream-browserify": "^3.0.0",
"typescript": "^4.9.4",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-wasm": "^3.1.1",
"vitest": "^0.28.1"
}
}