-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "mycelium-swaps-liquidator",
"version": "1.1.1",
"main": "./index.ts",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "nodemon -e ts --exec \"npm run start\"",
"prepare": "husky install",
"start": "ts-node ./index.ts",
"docker:build": "docker build -t swaps-liquidator --platform linux/amd64 .",
"docker:push": "docker tag swaps-liquidator gcr.io/avian-direction-235610/swaps-liquidator && docker push gcr.io/avian-direction-235610/swaps-liquidator"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"husky": "^7.0.1",
"prettier": "^2.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": 2500
},
"dependencies": {
"@ethersproject/providers": "^5.4.1",
"@mycelium-ethereum/perpetual-swaps-contracts": "^1.0.0",
"@types/death": "^1.1.2",
"@types/express": "^4.17.13",
"@types/node": "^16.11.12",
"@weiroll/weiroll.js": "^0.3.0",
"colors": "^1.4.0",
"death": "^1.1.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.4",
"express": "^4.17.1",
"mongoose": "^6.3.6",
"node-cache": "^5.1.2",
"node-cron": "3.0.0",
"nodemon": "^2.0.16",
"prom-client": "^14.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}