-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.43 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
{
"name": "@phuture/savings-vault-contracts",
"version": "0.0.1",
"description": "The harmony between Foundry and Hardhat.",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"clean": "hardhat clean",
"compile:test": "cross-env TEST=true hardhat compile",
"test": "npm run compile:test && npm run mocha:run",
"test:hardhat:fast": "NO_COMPILE=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat test --network hardhat --no-compile",
"forge-test": "source ./.env && forge test",
"forge-snapshot": "source ./.env && forge snapshot",
"remove-logs": "hardhat remove-logs",
"format": "cross-env prettier --write './**/*.(ts|js|json|sol)'",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --ignore-path .solhintignore 'src/**/*.sol' && prettier -c 'src/**/*.sol'",
"lint:sol:fix": "solhint ./contracts/**/*.sol --fix",
"lint-quick": "pretty-quick --staged --pattern '**/*.(ts|js|json|sol)'"
},
"author": "Phuture Finance",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node-dependencies": "^0.8.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.6.6",
"hardhat": "^2.9.5",
"hardhat-log-remover": "^2.0.2",
"hardhat-preprocessor": "^0.1.4",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "^3.1.3",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4",
"yesno": "^0.4.0"
}
}