forked from terra-money/shuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.06 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
{
"name": "@terra-money/shuttle-terra",
"version": "1.0.0",
"description": "Terra side shuttle implementation to relay tx on the Ethereum Blockchain",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "ts-node ./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/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/redis": "^2.8.28",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"@types/web3": "^1.2.2",
"@types/web3-provider-engine": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2"
},
"dependencies": {
"@terra-money/terra.js": "^1.3.1",
"@truffle/hdwallet-provider": "^1.2.0",
"axios": "^0.21.0",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"redis": "^3.0.2",
"ts-node": "^9.0.0",
"web3": "^1.3.0",
"web3-eth-contract": "^1.3.0",
"web3-utils": "^1.3.0",
"typescript": "^4.1.2"
}
}