-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.56 KB
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
{
"name": "celo-hot-wallet",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node -r esm ./dist/index.js",
"start:dev": "ts-node-dev -r esm --respawn ./src/index.ts",
"lint": "tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Biscoint",
"license": "Apache-2.0",
"dependencies": {
"@celo/contractkit": "^0.4.18",
"bip32": "^2.0.6",
"bip39": "^3.0.2",
"colors": "^1.4.0",
"config": "^3.3.1",
"death": "^1.1.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"nax-common": "git+ssh://git@github.com/Biscoint/nax-common.git#v0.5.1",
"web3": "^1.3.0"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/death": "^1.1.0",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.163",
"@types/moment": "^2.13.0",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"bugs": {
"url": "https://github.com/Biscoint/celo-hot-wallet/issues"
},
"homepage": "https://github.com/Biscoint/celo-hot-wallet#readme"
}