forked from graphprotocol/token-distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.64 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.64 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
{
"name": "graph-token-dist",
"version": "0.3.1",
"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",
"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": "solium --dir ./contracts",
"lint:sol:fix": "solium --dir ./contracts --fix",
"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/contracts": "^0.7.8-testnet-staging-phase2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0-solc-0.7",
"@typechain/ethers-v5": "^2.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"chai": "^4.2.0",
"consola": "^2.15.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "15.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.18",
"ethlint": "^1.2.5",
"hardhat": "^2.0.0",
"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",
"hardhat-typechain": "^0.3.3",
"inquirer": "^7.3.3",
"p-queue": "^6.6.2",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.56",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.2"
}
}