-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
32 lines (32 loc) · 851 Bytes
/
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
{
"name": "evm-starter",
"version": "0.0.4",
"description": "This project can be use as a starting point for developing your SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Ian He & Jay Ji",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "6.8.1",
"@subql/cli": "0.16.2-1",
"typescript": "4.4.4"
},
"dependencies": {
"@subql/contract-processors": "^0.3.3-3",
"@subql/types": "0.11.1-1",
"ethers": "^5.5.0",
"moonbeam-types-bundle": "^2.0.1"
}
}