-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.88 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
{
"name": "@vaporfi/meme-factory",
"version": "1.0.0",
"description": "",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"deploy:avalanche": "hardhat run --network avalanche scripts/deploy/index.ts",
"deploy:fuji": "hardhat run --network avalancheFuji scripts/deploy/index.ts",
"lint": "pnpm run lint:sol && pnpm run prettier:check",
"lint:sol": "prettier --check \"**/*.sol\" --ignore-path \".prettierignore\" && pnpm solhint {script,src,test}/**/*.sol",
"prepare": "husky",
"prettier:check": "prettier --check \"**/*.{json,md,yml,sol,ts}\" --ignore-path \".prettierignore\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml,sol,ts}\" --ignore-path \".prettierignore\"",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage",
"upgrade:avalanche": "hardhat run --network avalanche scripts/upgrade-diamond-safe.ts",
"upgrade:fuji": "hardhat run --network avalancheFuji scripts/upgrade-diamond.ts"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.1",
"@prb/math": "4.0.2",
"@sablier/v2-core": "1.1.2",
"@sablier/v2-periphery": "1.1.1",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"solmate": "6.2.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@safe-global/protocol-kit": "^3.0.2",
"@safe-global/safe-core-sdk-types": "^4.0.2",
"abitype": "^1.0.2",
"dotenv": "^16.3.1",
"ds-test": "github:dapphub/ds-test",
"ethers": "6.6.2",
"forge-std": "github:foundry-rs/forge-std#v1",
"hardhat": "^2.19.3",
"hardhat-deploy": "^0.11.45",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4"
}
}