-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathpackage.json
70 lines (70 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@graphprotocol/token-distribution",
"version": "1.2.0",
"description": "Graph Token Distribution",
"main": "index.js",
"scripts": {
"prepublishOnly": "scripts/prepublish",
"build": "scripts/build",
"clean": "rm -rf build/ cache/ dist/ && hardhat clean",
"compile": "hardhat compile --show-stack-traces",
"deploy": "yarn run build && hardhat deploy",
"test": "scripts/test",
"test:gas": "RUN_EVM=true REPORT_GAS=true scripts/test",
"test:coverage": "scripts/coverage",
"lint": "yarn run lint:ts && yarn run lint:sol",
"lint:ts": "eslint '**/*.{js,ts}' --fix",
"lint:sol": "prettier --write contracts/**/*.sol && solhint --fix contracts/**/*.sol --config node_modules/solhint-graph-config/index.js",
"security": "scripts/security",
"flatten": "scripts/flatten",
"typechain": "hardhat typechain",
"verify": "hardhat verify",
"size": "hardhat size-contracts"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"author": "The Graph Team",
"license": "MIT",
"devDependencies": {
"@ethersproject/experimental": "^5.0.7",
"@graphprotocol/client-cli": "^2.0.2",
"@graphprotocol/contracts": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0-solc-0.7",
"@openzeppelin/contracts-upgradeable": "3.4.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^20.4.2",
"chai": "^4.2.0",
"coingecko-api": "^1.0.10",
"consola": "^2.15.0",
"dotenv": "^16.0.0",
"eslint": "^8.56.0",
"eslint-graph-config": "workspace:^",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.18",
"graphql": "^16.5.0",
"hardhat": "^2.6.1",
"hardhat-abi-exporter": "^2.0.1",
"hardhat-contract-sizer": "^2.0.1",
"hardhat-deploy": "^0.7.0-beta.9",
"hardhat-gas-reporter": "^1.0.1",
"inquirer": "8.0.0",
"p-queue": "^6.6.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint-community": "^3.7.0",
"solhint-graph-config": "workspace:^0.0.1",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": "^10.9.1",
"typechain": "^5.0.0",
"typescript": "^4.0.2"
}
}