-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "ledger-companion-wallet",
"version": "0.1.0",
"private": true,
"pre-commit": [
"lint",
"lint:styles"
],
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ledgerhq/hw-app-eth": "^6.34.2",
"@ledgerhq/hw-transport-webusb": "^6.27.18",
"aelf-sdk": "^3.2.44",
"antd": "^5.10.1",
"bip32-path": "^0.4.2",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"from-exponential": "^1.1.1",
"next": "latest",
"protobufjs": "^7.2.5",
"protobufjs-cli": "^1.1.2",
"qrcode": "^1.5.3",
"react": "latest",
"react-dom": "latest",
"react-redux": "^8.1.3",
"react-scripts": "5.0.1",
"recoil": "^0.7.7",
"redux": "^4.2.1",
"stream": "^0.0.2",
"swr": "^2.2.4"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:code:fix": "npx eslint --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"generate": "pbjs -t static-module -w commonjs -o ./utils/compiled.js ./utils/message.proto",
"lint:styles": "stylelint '**/*.{css,scss}'"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitest/coverage-istanbul": "^0.34.6",
"crypto-browserify": "^3.12.0",
"eslint": "^8.53.0",
"eslint-config-next": "latest",
"eslint-plugin-import": "^2.29.0",
"https-browserify": "^1.0.0",
"parcel": "^2.9.3",
"path-browserify": "^1.0.1",
"pre-commit": "^1.2.2",
"process": "^0.11.10",
"punycode": "^1.4.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"typescript": "latest",
"url": "^0.11.1",
"vitest": "^0.34.6"
}
}