-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "@terra-money/shuttle-eth",
"version": "1.0.3",
"description": "Ether side shuttle implementation to relay tx on the Terra Blockchain",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsx ./src/index.ts",
"test": "jest",
"prettier": "prettier --write ./src/**/*.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terra-project/shuttle.git"
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm i"
}
},
"prettier": {
"semi": true,
"singleQuote": true
},
"author": "Terraform Labs. PTE",
"license": "MIT",
"bugs": {
"url": "https://github.com/terra-project/shuttle/issues"
},
"homepage": "https://github.com/terra-project/shuttle#readme",
"devDependencies": {
"@types/bluebird": "^3.5.35",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"husky": "^4.3.0",
"jest": "^27.0.6",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typedoc": "^0.22.13"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.16.0",
"@terra-money/terra.js": "3.1.9",
"axios": "^0.26.1",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"dotenv": "^16.0.0",
"redis": "^3.0.2",
"tsx": "^4.17.0",
"typescript": "^4.3.4",
"web3": "^1.3.0",
"web3-eth-contract": "^1.3.0",
"web3-utils": "^1.3.0"
}
}