forked from boudra/chainsauce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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": "chainsauce",
"type": "module",
"version": "1.0.20",
"description": "Source EVM events for easy querying",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"lint": "eslint src",
"test:watch": "vitest --watch",
"build": "tsc && tsc-alias",
"dev": "concurrently 'tsc --watch' 'tsc-alias --watch'",
"prepare": "npm run build"
},
"keywords": [
"evm",
"event-sourcing",
"web3"
],
"author": "Mohamed Boudra",
"license": "MIT",
"dependencies": {
"@types/pg": "^8.10.9",
"@types/uuid": "^9.0.4",
"abitype": "^0.8.11",
"async-retry": "^1.3.3",
"better-sqlite3": "^8.2.0",
"concurrently": "^8.2.1",
"emittery": "^1.0.1",
"fastq": "^1.15.0",
"pg": "^8.11.3",
"tiny-typed-emitter": "^2.1.0",
"typed-emitter": "^2.1.0",
"typescript": "^5.1.5",
"uuid": "^9.0.1",
"viem": "^1.2.2",
"vitest": "^0.34.6"
},
"devDependencies": {
"@types/async-retry": "^1.4.6",
"@types/better-sqlite3": "^7.6.3",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-v8": "^0.34.5",
"eslint": "^8.36.0",
"tsc-alias": "^1.8.8"
}
}