-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"name": "proxy-hot-wallet",
"version": "0.1.0",
"description": "Demo for a safe and effective custodial hot wallet using features unique to Substrate",
"main": "build/main.js",
"repository": "https://github.com/emostov/proxy-hot-wallet.git",
"author": "Zeke Mostov <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"lint": "tsc && eslint . --ext ts",
"build": "tsc",
"main": "node ./build/main.js",
"start": "yarn run build && yarn run main",
"demo": "yarn run main",
"sidecar": "SAS_LOG_LEVEL=http ./node_modules/.bin/substrate-api-sidecar"
},
"dependencies": {
"@polkadot/util": "^6.2.1",
"@polkadot/util-crypto": "^6.2.1",
"@substrate/api-sidecar": "^4.0.8",
"@substrate/txwrapper": "^4.1.0",
"@types/memoizee": "^0.4.5",
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
}
}