-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "@unicrow/indexer-api",
"description": "unicrow listener events from unicrow-contract and store it on hasura postgres",
"version": "1.2.3",
"author": "Unicrow Team <hello@unicrow.io>",
"license": "MIT",
"main": "src/index.ts",
"type": "module",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"prepare": "husky",
"start": "node ./build/index.js",
"dev": "tsc-watch --onSuccess \"yarn start\"",
"build": "yarn clean && tsc",
"clean": "rm -rf ./build",
"lint": "rome check src/ --verbose",
"lint:fix": "rome check src/ --apply-unsafe",
"format": "rome format src/ --write"
},
"dependencies": {
"@unicrowio/ethers-types": "^1.2.3",
"async": "^3.2.6",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"koa": "2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-router": "^12.0.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "7.4.8",
"@types/node": "^22.7.5",
"babel-loader": "9.2.1",
"husky": "^9.1.6",
"rome": "^12.1.3",
"tsc-watch": "^6.2.0",
"typescript": "5.6.3"
},
"engines": {
"node": "^22"
}
}