-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.47 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
55
56
{
"name": "rapid-relayer",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --stack_size=4096 --max-old-space-size=4096 -r ts-node/register/transpile-only -r tsconfig-paths/register src/index.ts",
"lint": "npx eslint . --fix",
"prepare": "husky",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@confio/ics23": "^0.6.8",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/json-rpc": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"@initia/initia.js": "^0.2.20",
"@initia/initia.proto": "^0.2.0",
"axios": "^1.7.5",
"bech32": "^2.0.0",
"better-sqlite3": "^11.3.0",
"bluebird": "^3.7.2",
"express": "^4.19.2",
"http": "^0.0.1-security",
"https": "^1.0.0",
"long": "^5.2.3",
"prom-client": "^15.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/bluebird": "^3.5.42",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"msw": "^2.6.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^7.16.0"
},
"lint-staged": {
"src/**/*.{mjs|ts}": [
"eslint --fix"
]
}
}