-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "huff-eip4borrow",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:massun-onibakuchi/huff-eip4borrow.git",
"author": "Massun onibakuchi (https://github.com/massun-onibakuchi)",
"license": "UNLICENSED",
"workspaces": [
"common-ts/",
"contracts"
],
"nohoist": [
"**/typechain/*",
"**/@typechain/*"
],
"private": true,
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "precommit"
}
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"===LINT===": "echo 'Run npm scripts with all workspaces'",
"lint:check": "npm run lint:check --workspaces --if-presents",
"lint:fix": "npm run lint:fix --workspaces --if-presents",
"===TEST===": "========================================",
"test": "npm run test --workspaces --if-presents",
"test:sol": "yarn workspace contracts test",
"test:ts": "echo '*******TEST_SKIP******'; exit 1",
"===BUILD===": "========================================",
"b": "npm run build",
"build": "npm run build --workspaces --if-presents",
"build:sol": "yarn workspace contracts build",
"===DEV===": "========================================",
"coverage:sol": "forge coverage --config-path=./contracts/foundry.toml"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"chai": "^4.3.7",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}