-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 932 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 932 Bytes
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
{
"name": "web3-event-indexer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/undefinedIsMyLife/web3-event-indexer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/undefinedIsMyLife/web3-event-indexer/issues"
},
"homepage": "https://github.com/undefinedIsMyLife/web3-event-indexer#readme",
"dependencies": {
"@prisma/client": "^6.19.1",
"decimal.js": "^10.6.0",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"express": "^5.2.1",
"prisma": "^6.19.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}