This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.53 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
{
"name": "@sense-finance/sense-v1",
"version": "1.2.0",
"private": true,
"description": "Sense V1 Contracts",
"author": "Federico M. Alconada Verzini",
"homepage": "https://github.com/sense-finance/sense-v1#readme",
"repository": "git@github.com:sense-finance/sense-v1.git",
"workspaces": [
"pkg/*"
],
"scripts": {
"test": "time yarn workspaces foreach --parallel --verbose --interlaced run test",
"test:mainnet": "time yarn workspaces foreach --parallel --verbose --interlaced --exclude @sense-finance/v1-utils --exclude @sense-finance/v1-deployments run test:mainnet",
"test:fuzz": "time yarn workspace @sense-finance/v1-core run test:fuzz",
"test:4626": "time yarn workspace @sense-finance/v1-core run test:4626",
"lint": "yarn workspaces foreach --parallel --verbose run lint",
"fix": "yarn workspaces foreach --parallel --verbose run fix",
"coverage": "time yarn workspaces foreach --parallel --verbose --interlaced --exclude @sense-finance/v1-utils --exclude @sense-finance/v1-deployments run coverage",
"gas-snapshot": "yarn workspaces foreach --parallel --verbose --interlaced run gas-snapshot"
},
"packageManager": "yarn@3.1.0",
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"lint-staged": {
"**/**/*.{js,sol}": [
"yarn fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}