-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
{
"name": "kasvault",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "react-app-rewired start",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"eject": "react-app-rewired eject",
"lint": "prettier --check './**/*.{js,jsx,ts,tsx,css}' --config ./.prettierrc",
"test": "jest",
"cra:test": "react-app-rewired test",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css}' --config ./.prettierrc"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@ledgerhq/errors": "^6.16.0",
"@ledgerhq/hw-transport": "^6.30.0",
"@ledgerhq/hw-transport-webhid": "^6.28.0",
"@mantine/core": "^7.1.5",
"@mantine/form": "^7.2.2",
"@mantine/hooks": "^7.1.3",
"@mantine/notifications": "^7.2.2",
"@tabler/icons-react": "^2.42.0",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"bip32": "^4.0.0",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"hw-app-kaspa": "github:coderofstuff/hw-app-kaspa#v1.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-qrcode-logo": "^2.9.0",
"react-router-dom": "^6.26.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "18.2.46",
"buffer": "^6.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.35.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"overrides": {
"eslint-plugin-import": {
"semver": "^7.5.3"
},
"eslint-plugin-jsx-a11y": {
"semver": "^7.5.3"
},
"eslint-plugin-react": {
"semver": "^7.5.3"
}
},
"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"
]
}
}