-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
120 lines (120 loc) · 3.48 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
{
"name": "silentium",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@boltz/bitcoin-ops": "^2.0.0",
"@capacitor/android": "^6.0.0",
"@capacitor/camera": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@noble/secp256k1": "^2.1.0",
"@scure/base": "^1.1.6",
"@scure/bip32": "^1.4.0",
"@scure/bip39": "^1.3.0",
"@scure/btc-signer": "^1.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@zxing/library": "^0.20.0",
"axios": "^1.6.8",
"bip158": "^1.1.0",
"bip352-tweaker": "^0.1.1",
"bip65": "^1.0.3",
"bip66": "^1.1.5",
"bitcoinjs-lib": "^6.1.5",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"crypto-browserify": "^3.12.0",
"decimal.js": "^10.4.3",
"n64": "^0.2.10",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.0",
"react-qr-code": "^2.0.12",
"react-scripts": "5.0.1",
"scrypt-js": "^3.0.1",
"stream-browserify": "^3.0.0",
"typescript": "^4.4.2",
"vm-browserify": "^1.1.2",
"workbox-background-sync": "^6.4.2",
"workbox-broadcast-update": "^6.4.2",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-google-analytics": "^6.4.2",
"workbox-navigation-preload": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-range-requests": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"workbox-streams": "^6.4.2"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint --ext .ts,.tsx src",
"eject": "craco eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"cap:sync": "npx cap sync",
"cap:android": "npx cap copy android && npx cap open android",
"cap:ios": "npx cap copy ios && npx cap open ios"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "",
"@babel/preset-env": "^7.24.4",
"@capacitor/cli": "^6.0.0",
"@craco/craco": "^7.1.0",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"husky": "^8.0.1",
"jest-environment-jsdom": "27.5.1",
"jest-environment-node": "27.5.1",
"prettier": "^2.7.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2"
}
}