-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@git-consensus/contracts",
"version": "0.0.8",
"description": "Official Git Consensus contracts, written in Solidity.",
"type": "commonjs",
"main": "build/scripts/index.js",
"types": "build/scripts/index.d.ts",
"keywords": [
"git-consensus",
"contracts",
"protocol",
"implementation",
"open-source",
"blockchain",
"ethereum",
"solidity",
"web3",
"ethers"
],
"author": "Git Consensus Contributors",
"license": "GPL-3.0-only",
"homepage": "https://github.com/git-consensus",
"repository": {
"type": "git",
"url": "git+https://github.com/git-consensus/contracts.git"
},
"files": [
"/deployments.json",
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/test/**/*.json",
"/build/**",
"/contracts/**/*.sol",
"!/contracts/test/**/*"
],
"engines": {
"node": "14.x"
},
"scripts": {
"build": "npx hardhat compile --quiet",
"clean": "forge clean; npx hardhat clean; rm -rf package-lock.json coverage.json artifacts/ build/ cache/ coverage/ example/ node_modules/ types/",
"coverage": "npx hardhat coverage --solcoverjs ./solcover.js",
"deploy": "npx hardhat run scripts/console.ts",
"doc": "npx hardhat dodoc",
"lint": "npx prettier --config ./.prettierrc.json --check . && npx eslint --no-error-on-unmatched-pattern \"**/*.{ts,tsx}\"",
"pretty": "npx prettier --config ./.prettierrc.json --write . && npx eslint --no-error-on-unmatched-pattern --fix .",
"prepare": "npm run build && tsc",
"size": "npx hardhat size-contracts",
"test": "npx hardhat test --network hardhat",
"typechain": "npx hardhat typechain",
"update": "forge update && npm upgrade",
"ut": "forge test"
},
"devDependencies": {
"@float-capital/ds-test": "^0.0.1",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@rari-capital/solmate": "^6.4.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@types/nodegit": "^0.27.10",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.1",
"fs-extra": "^10.1.0",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^1.1.0-rc.9",
"mocha": "^10.0.0",
"nodegit": "^0.27.0",
"nodegit-gyp": "^7.1.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"readline-sync": "^1.4.10",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.3"
}
}