-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "custodial",
"scripts": {
"build": "npm run build --workspaces --if-present",
"prebuild": "npm run prebuild --workspaces --if-present",
"pretest": "npm run prebuild --workspaces --if-present",
"start": "npm start --workspaces --if-present",
"test": "npm test --workspaces --if-present"
},
"type": "module",
"workspaces": [
"src/custodial_frontend"
],
"dependencies": {
"@ant-design/icons": "^5.3.5",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"clsx": "^2.1.0",
"crypto-js": "^4.2.0",
"js-sha3": "^0.9.3",
"react-router-dom": "^6.22.3",
"readable-stream": "^4.5.2",
"web3": "^4.7.0"
},
"devDependencies": {
"@types/bech32": "^1.1.4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.11.30",
"@types/ripemd160": "^2.0.3"
}
}