-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.91 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.91 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
{
"name": "cpu-v3",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Charged-Particles/cpu-v3.git",
"author": "Firma Lux, Inc. <charged.fi>",
"license": "MIT",
"scripts": {
"reinstall": "rm -rf node_modules && rm -f yarn.lock && yarn clean && yarn",
"clean": "rm -rf build cache coverage coverage.json test-results.xml",
"clean-test": "rm -rf test-results.xml",
"clean-build": "rm -rf abis build cache typechain-types",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"test": "yarn clean-test && hardhat test --show-stack-traces",
"watch-test": "hardhat watch test",
"hint": "solhint \"contracts/**/*.sol\"",
"coverage": "yarn clean-test && hardhat --show-stack-traces coverage --temp coverage_build && yarn clean-test",
"gas": "REPORT_GAS=true hardhat test",
"gen-docs": "solidity-docgen -i contracts -o docs",
"deploy-cpu": "hardhat deploy --tags Setup_CPU --network"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^4.9.2",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"erc20permit": "^0.1.1",
"ethers": "^6.6.2",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.11.34",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.8",
"lodash": "^4.17.21",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.1",
"typescript": ">=4.5.0"
},
"dependencies": {
"@types/lodash": "^4.17.6"
}
}