-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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": "multiswap-validator-node",
"version": "1.0.0",
"description": "MultiSwap Validator Node",
"main": "src/index.ts",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon && ts-node src/index.ts",
"build": "rm -rf ./build && tsc",
"lint": "eslint .",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\""
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^1.2.6",
"big.js": "^6.2.1",
"bullmq": "^3.5.11",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"express": "^4.17.2",
"web3": "^1.8.1",
"web3-utils": "^1.9.0",
"mongoose": "^6.1.3",
"mongoose-autopopulate": "^0.16.0",
"winston": "^3.2.1",
"jsonwebtoken": "^8.5.1",
"aws-sdk": "^2.1075.0",
"moment": "^2.29.4",
"moment-range": "^4.0.2",
"node-cron": "^2.0.3",
"@cosmjs/cosmwasm-stargate": "^0.30.1",
"eth-sig-util": "^3.0.1"
}
}