-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.32 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
{
"name": "@beandao/governance",
"version": "1.0.0",
"description": "new type governance contract",
"license": "LGPL-3.0-or-later",
"author": "yoonsung.eth",
"devDependencies": {
"@beandao/contracts": "^0.8.0",
"@graphprotocol/graph-ts": "^0.24.1",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.1",
"babel-eslint": "^10.1.0",
"buidler-ethers-v5": "^0.2.3",
"buidler-gas-reporter": "^0.1.4",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"eth-gas-reporter": "^0.2.23",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.5.2",
"hardhat": "^2.9.0",
"hardhat-deploy": "^0.9.23",
"hardhat-gas-reporter": "^1.0.6",
"http-server": "^0.12.3",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"mocha": "^8.4.0",
"mustache": "^4.2.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solc": "^0.8.12",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"homepage": "https://github.com/Nipol/ContractTemplate#readme",
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"smart-contracts",
"solidity"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Nipol/ContractTemplate"
},
"scripts": {
"build": "hardhat compile",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 && hardhat test --network hardhat",
"forge": "forge test",
"ci": "npm t && forge test",
"chain": "hardhat node --network hardhat --no-deploy",
"deploy": "hardhat deploy",
"postdeploy": "hardhat run scripts/publish.js",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"coverage:server": "npm run coverage && http-server ./coverage -s -c-1",
"docs": "scripts/docs.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --config .prettierrc --write '**/*.{js,sol,ts}'",
"precompile": "rimraf build contracts/build artifacts cache",
"prepublish": "rimraf build contracts/build artifacts cache contracts/*.md",
"prepare": "env COMPILE_MODE=production npm run build",
"prepack": "scripts/prepack.sh",
"release": "scripts/release.sh",
"vertigo": "scripts/vertigo.sh",
"analyze": "slither ./contracts",
"hardhat:goerli": "cross-env NODE_ENV=production hardhat --network goerli",
"hardhat:kovan": "cross-env NODE_ENV=production hardhat --network kovan",
"hardhat:optimism-kovan": "cross-env NODE_ENV=production hardhat --network optimism-kovan",
"hardhat:optimism": "cross-env NODE_ENV=production hardhat --network optimism",
"hardhat:mainnet": "cross-env NODE_ENV=production hardhat --network mainnet",
"clean": "rm package-lock.json && rm -rf node_modules/* node_modules/.*"
}
}