-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.81 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.81 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
{
"name": "@graphprotocol/data-edge",
"version": "0.3.0",
"private": true,
"description": "The Graph Data Edge",
"author": "Edge & Node",
"license": "GPL-2.0-or-later",
"main": "index.js",
"scripts": {
"prepare": "cd ../.. && husky install packages/contracts/.husky",
"prepublishOnly": "scripts/prepublish",
"build": "pnpm build:self",
"build:self": "scripts/build",
"clean": "rm -rf build/ cache/ dist/ reports/ artifacts/",
"compile": "hardhat compile --quiet",
"test": "pnpm build && pnpm test:self",
"test:self": "scripts/test",
"test:gas": "RUN_EVM=true REPORT_GAS=true scripts/test",
"test:coverage": "pnpm build && pnpm test:coverage:self",
"test:coverage:self": "scripts/coverage",
"lint": "pnpm lint:ts; pnpm lint:sol; pnpm lint:md; pnpm lint:json",
"lint:ts": "eslint '**/*.{js,ts,cjs,mjs,jsx,tsx}' --fix --cache; prettier -w --cache --log-level warn '**/*.{js,ts,cjs,mjs,jsx,tsx}'",
"lint:sol": "solhint --fix --noPrompt --noPoster 'contracts/**/*.sol'; prettier -w --cache --log-level warn 'contracts/**/*.sol'",
"lint:md": "markdownlint --fix --ignore-path ../../.gitignore '**/*.md'; prettier -w --cache --log-level warn '**/*.md'",
"lint:json": "prettier -w --cache --log-level warn '**/*.json'",
"security": "scripts/security",
"flatten": "scripts/flatten",
"verify": "hardhat verify",
"size": "hardhat size-contracts",
"deploy": "hardhat run scripts/deploy.ts"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@tenderly/api-client": "^1.0.13",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/mocha": "^9.0.0",
"@types/node": "^20.17.50",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.2.0",
"dotenv": "^16.0.0",
"eslint": "catalog:",
"ethereum-waffle": "^3.0.2",
"ethers": "^5.7.2",
"ethlint": "^1.2.5",
"hardhat": "catalog:",
"hardhat-abi-exporter": "^2.2.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-secure-accounts": "0.0.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"lodash": "^4.18.1",
"markdownlint-cli": "0.45.0",
"prettier": "catalog:",
"prettier-plugin-solidity": "catalog:",
"solhint": "catalog:",
"solidity-coverage": "^0.8.16",
"truffle-flattener": "^1.4.4",
"ts-node": ">=8.0.0",
"typechain": "^8.3.0",
"typescript": "catalog:"
}
}