-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.56 KB
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
57
{
"name": "solid-ql",
"version": "1.0.3",
"description": "A streamlined open-source tool that monitors and extracts event data from EVM-compatible contracts, efficiently storing the information in a PostgreSQL database, and offering a GraphQL interface. Seamlessly integrates with Hardhat or Truffle projects with minimal configuration",
"main": "./dist/index.js",
"bin": {
"solid-ql": "./bin.js"
},
"author": "Masoud Rezakhanlou <masoud.rk95@gmail.com>",
"license": "ISC",
"repository": "https://github.com/mesutrk95/solid-ql",
"keywords": [
"ethereum",
"evm",
"indexer",
"graphql",
"sql",
"ethers",
"eth",
"truffle",
"hardhat",
"solidity",
"solid-ql",
"web3"
],
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc",
"posttest": "lint",
"publish": "npm publish"
},
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^16.8.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.34.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "20.8.2",
"gts": "^5.2.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.0"
}
}