forked from pancakeswap/pancake-v4-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 871 Bytes
/
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
{
"name": "pancake-v4-core",
"description": "Pancakeswap smart contracts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"decimal.js": "^10.4.3",
"ethers": "^6.8.0",
"husky": "^8.0.3",
"prettier": "2.8.6",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"compile": "forge compile",
"test": "forge test --isolate --show-progress",
"dev": "forge test --isolate -vvv -w --show-progress",
"snapshot": "rm -fr .forge-snapshots && forge test --isolate --show-progress",
"prettier": "forge fmt src/ && forge fmt test/",
"prettier-check": "forge fmt --check",
"prepare": "husky install"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}