-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "auto-claim-service",
"version": "1.0.0",
"description": "auto claim service to claim bridge transactions",
"exports": "./dist/",
"main": "index.js",
"type": "module",
"scripts": {
"tests": "jest --coverage",
"tests:integration": "echo 'Hello intergation tests'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"start": "node dist/index.js",
"build": "tsup"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@maticnetwork/bridge-api-common": "^1.0.12",
"@maticnetwork/chain-indexer-framework": "^1.3.5",
"axios": "^1.6.8",
"dotenv": "^16.0.1",
"ethers": "^6.12.0",
"long": "^5.2.0"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.0.3",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
}
}