-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "@covalent/goldrush-decoder",
"version": "1.0.0",
"description": "Decode unstructured, raw event logs into structured data with a simple API. Open-source. Public Good. 200+ Chains.",
"scripts": {
"add-config": "ts-node ./scripts/add-config.ts",
"build": "tsc",
"dev": "tsc-watch --onSuccess \"npm run start\"",
"lint": "eslint .",
"pretty": "prettier . --write",
"start": "node ./dist/api/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/covalenthq/goldrush-decoder.git"
},
"author": {
"name": "covalenthq",
"url": "https://covalenthq.com"
},
"bugs": {
"url": "https://github.com/covalenthq/goldrush-decoder/issues"
},
"homepage": "https://github.com/covalenthq/goldrush-decoder#readme",
"license": "MIT",
"dependencies": {
"@covalenthq/client-sdk": "^2.2.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
"express": "^4.21.1",
"tsc-watch": "^6.0.4",
"viem": "^2.17.4",
"yup": "^1.3.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.2",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}