-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "erc721_eth",
"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": "SubQuery Team",
"license": "MIT",
"dependencies": {
"@polkadot/util-crypto": "^12.2.2",
"@subql/common": "latest",
"@subql/types-ethereum": "latest",
"abab": "^2.0.6",
"assert": "^2.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@subql/cli": "latest",
"@subql/testing": "latest",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "4",
"eslint": "7",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.4",
"ethers": "^5.7.2",
"prettier": "2.5.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
}
}