-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 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
40
41
42
43
{
"name": "@graphprotocol/hardhat-graph",
"version": "0.1.0-alpha.2",
"license": "(Apache-2.0 OR MIT)",
"description": "Hardhat plugin for Ethereum developers to build subgraphs alongside their smart contracts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint . --ext .ts"
},
"files": [
"dist/*",
"src/*",
"README.md"
],
"devDependencies": {
"@graphprotocol/graph-cli": ">=0.44.0",
"@graphprotocol/graph-ts": ">=0.29.3",
"@types/mocha": "^9.0.0",
"@types/node": "^12.20.50",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"ethers": "^5.6.5",
"hardhat": "^2.13.0",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"yaml": "^2.0.1"
},
"peerDependencies": {
"@graphprotocol/graph-cli": ">= 0.44.0",
"@graphprotocol/graph-ts": ">= 0.29.3",
"hardhat": ">=2.13.0"
}
}