-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.72 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
{
"name": "multikey",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vite --mode test",
"testnet": "vite --mode testnet",
"build": "tsc && vite build && node scripts/copy-index-to-404.mjs",
"build:test": "tsc && vite build --mode test",
"build:testnet": "tsc && vite build --mode testnet && node scripts/copy-index-to-404.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy": "gh-pages -d dist --dotfiles"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@material/material-color-utilities": "^0.2.7",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.13.1",
"@mui/styled-engine-sc": "6.0.0-alpha.17",
"@mui/utils": "^5.15.13",
"@reduxjs/toolkit": "^2.2.2",
"@scure/bip39": "^1.3.0",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"copy-to-clipboard": "^3.3.3",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"elliptic": "^6.5.5",
"ethers": "^5.7.2",
"file-saver": "^2.0.5",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"int64-buffer": "^1.0.1",
"js-sha3": "^0.9.3",
"long": "^5.2.3",
"msgpack-lite": "^0.1.26",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-i18next": "^14.1.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-share": "^5.1.0",
"react-swipeable-views": "^0.14.0",
"styled-components": "^6.1.8",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/crypto-js": "^4.2.2",
"@types/elliptic": "^6.4.18",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/msgpack-lite": "^0.1.11",
"@types/node": "^20.11.27",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/react-swipeable-views": "^0.13.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.1.6"
},
"packageManager": "pnpm@9.7.0"
}