-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "multiswap-node",
"version": "1.0.0",
"description": "MultiSwap Node Cron",
"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": {
"@cosmjs/cosmwasm-stargate": "^0.30.1",
"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",
"node-cron": "^2.0.3",
"eth-sig-util": "^3.0.1",
"crypto": "^1.0.1",
"moment": "^2.29.4"
}
}