This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "contracts",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean",
"build": "npm run clean && npx hardhat compile",
"hardhat": "hardhat",
"console": "hardhat console",
"test": "NODE_ENV=test hardhat test",
"deploy:devnet": "hardhat run ./scripts/deploy.ts --network devnet --verbose",
"deploy:testnet": "hardhat run ./scripts/deploy.ts --network testnet --verbose",
"deploy:localhost": "hardhat run ./scripts/deploy.ts --network localhost --verbose",
"format": "prettier --write \"**/*.{sol,js,ts}\"",
"lint:sol": "solhint contracts/**/*.sol",
"lint:prettier": "prettier -c \"**/*.{sol,js,ts}\"",
"lint": "solhint \"contracts/**/*.sol\" && prettier -c \"**/*.{sol,js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liberty30/contracts.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Liberty30/contracts/issues"
},
"homepage": "https://github.com/Liberty30/contracts#readme",
"devDependencies": {
"@dsnp/test-generators": "0.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "10.0.0",
"@typechain/hardhat": "6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.30",
"chai": "^4.3.6",
"dotenv": "16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"hardhat-gas-reporter": "^1.0.8",
"js-sha3": "^0.8.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0"
}
}