forked from silo-finance/silo-contracts-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 744 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 744 Bytes
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
{
"private": true,
"name": "silo-contracts-v2",
"packageManager": "yarn@3.5.0",
"version": "3.9.0",
"repository": {
"type": "git",
"url": "git@github.com:silo-finance/silo-v2.git"
},
"workspaces": [
"silo-core",
"silo-oracles",
"silo-vaults",
"x-silo",
"silo-vaults"
],
"scripts": {
"clear:artifacts": "find . -name 'artifacts' | xargs rm -rf",
"clear:cache": "yarn clear:artifacts && rm -rf ./cache/ && forge clean",
"clear:node_modules": "find . -name 'node_modules' | xargs rm -rf",
"clear:all": "yarn clear:artifacts && yarn clear:cache && yarn clear:node_modules",
"remove:locks": "find . -name 'yarn.lock' -delete",
"reinstall": "yarn clear:all && yarn install"
}
}