-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "warp-keeper",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:llllllluc/warp-keeper.git",
"author": "llllllluc <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@sentry/node": "^7.44.2",
"@sentry/tracing": "^7.44.2",
"@skip-mev/skipjs": "^1.4.0",
"@terra-money/terra.js": "^3.1.7",
"@terra-money/warp-sdk": "^0.1.30",
"redis": "^4.6.4"
},
"lint-staged": {
"./src/{**/*,*}.{ts,tsx}": [
"prettier --write"
]
},
"scripts": {
"postinstall": "husky install",
"format": "prettier --write .",
"format-check": "prettier --ignore-path .gitignore --check .",
"lint": "yarn format-check && eslint . && yarn build",
"clean": "yarn tsc --build --clean && rm -rf build",
"build": "yarn clean && tsc",
"start-redis": "redis-server",
"start-redis-cli": "redis-cli",
"reset-redis": "rm dump.rdb",
"start-collector-dev": "ts-node src/bots/collector.ts",
"start-monitor-dev": "ts-node src/bots/monitor.ts",
"start-executor-dev": "ts-node src/bots/executor.ts",
"start-collector-prod": "node build/bots/executor.js",
"start-monitor-prod": "node build/bots/monitor.js",
"start-executor-prod": "node build/bots/executor.js",
"start-warp-keeper-in-docker": "docker-compose up --build"
}
}