This repository was archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.95 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.95 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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:fix": "yarn run lint:ts:fix && yarn run lint:sol:fix",
"lint:ts": "eslint '*/**/*.{js,ts}'",
"lint:ts:fix": "eslint '*/**/*.{js,ts}' --fix",
"lint:sol": "solhint './contracts/**/*.sol'",
"lint:sol:fix": "yarn prettier:sol && solhint --fix './contracts/**/*.sol'",
"prettier": "yarn run prettier:ts && yarn run prettier:sol",
"prettier:ts": "prettier --write 'test/**/*.ts'",
"prettier:sol": "prettier --write 'contracts/**/*.sol'",
"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",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.2.0",
"coingecko-api": "^1.0.10",
"consola": "^2.15.0",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "5.0.0",
"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": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.56",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typechain": "^5.0.0",
"typescript": "^4.0.2"
},
"dependencies": {}
}