-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "nifty-query",
"version": "0.0.1",
"description": "This project can be use as a starting point for developing your new Ethereum SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans",
"dev": "subql codegen && subql build && docker-compose pull && docker-compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "subql build && subql-node-ethereum test"
},
"homepage": "https://github.com/subquery/ethereum-subql-starter",
"repository": "github:subquery/ethereum-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Iphyman",
"license": "MIT",
"dependencies": {
"@subql/common": "latest",
"@subql/types-ethereum": "latest",
"@subql/validator": "latest",
"abab": "^2.0.6",
"assert": "^2.0.0"
},
"devDependencies": {
"@subql/cli": "latest",
"@subql/node-ethereum": "latest",
"@subql/testing": "latest",
"@subql/types": "latest",
"@types/node-fetch": "^2.6.4",
"ethers": "^5.7.2",
"typescript": "4.5.5"
}
}