-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
{
"name": "@safient/cli",
"version": "0.1.9-alpha",
"description": "Safient CLI tool to run a Safien worker and interact with the safes on Safient protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/safient/cli",
"prepublish": "tsc",
"author": "Safient <[email protected]>",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"format": "prettier --write src/*.ts src/**/*.ts src/**/**/*.ts",
"lint": "eslint . --ext .ts,.tsx",
"build": "npm run lint && ./node_modules/.bin/tsc -p tsconfig.json",
"prepare": "npm run format && npm run lint && npm run build",
"start": "npm run prepare && node ./dist/index.js start",
"test": "mocha --timeout 120000",
"test:watch": "jest --watch --passWithNoTests --detectOpenHandles --verbose"
},
"bin": {
"safient": "./bin/safient"
},
"resolutions": {
"ethers": "5.4.4",
"@ethersproject/bignumber": "^5.4.1",
"graphql": "15.4.0",
"scrypt": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz"
},
"dependencies": {
"@awaitjs/express": "^0.8.0",
"@ethersproject/providers": "^5.4.4",
"@notifire/core": "*",
"@notifire/ses": "*",
"@notifire/sns": "*",
"@safient/core": "^0.1.21-alpha.4",
"bip39": "^3.0.4",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.0",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.5.2",
"express": "4.17.1",
"format": "^0.2.2",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"log-symbols": "^5.0.0",
"mocha": "^9.1.3",
"qrcode-terminal": "^0.12.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/cors": "2.8.8",
"@types/express": "4.17.8",
"@types/inquirer": "^8.1.3",
"@types/jest": "26.0.15",
"@types/lodash": "^4.14.172",
"@types/supertest": "2.0.10",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"eslint": "7.12.1",
"jest": "26.6.1",
"nock": "13.0.4",
"prettier": "2.1.2",
"supertest": "6.0.0",
"ts-jest": "26.4.3",
"typescript": "^4.4.3"
},
"gitHead": "972ab96774007b2aee15b1da169d2ff4be9f9d27"
}