This repository was archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.54 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
{
"name": "wallet-ui",
"version": "1.7.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"format": "prettier --write .",
"lint": "eslint --cache --fix --ext .ts,.tsx .",
"prepare": "husky install",
"generate-contract-types": "./generate-contract-types.sh",
"postinstall": "npm run generate-contract-types",
"start:dev": "react-scripts start",
"start:prod": "serve -s -C -p 80 build"
},
"dependencies": {
"@blackbox-vision/react-qr-reader": "^5.0.0",
"@hermeznetwork/hermezjs": "^2.0.1",
"@lagunovsky/redux-react-router": "^2.2.0",
"@typechain/ethers-v5": "^9.0.0",
"@walletconnect/web3-provider": "^1.7.1",
"axios": "^0.25.0",
"clsx": "^1.1.1",
"cryptocurrency-icons": "^0.18.0",
"ethers": "^5.5.4",
"history": "^5.2.0",
"js-sha3": "^0.8.0",
"normalize.css": "^8.0.1",
"platform": "^1.3.6",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.9.0",
"react-redux": "^7.2.6",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"redux-thunk": "^2.4.1",
"serve": "^13.0.2",
"stacktrace-js": "^2.0.2",
"typechain": "^7.0.0",
"typescript": "^4.5.5",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/platform": "^1.3.4",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"redux-devtools-extension": "^2.13.9"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <=11",
"not android <10",
"not safari <14",
"not ios_saf <14",
"not chrome 49"
],
"development": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <=11",
"not android <10",
"not safari <14",
"not ios_saf <14",
"not chrome 49"
]
},
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --write"
}
}