-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.55 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
{
"private": true,
"name": "snx-flash-tool",
"author": "Gautham Ganesh Elango <[email protected]> (https://github.com/gg2001)",
"version": "1.0.1",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/snxgrants/flashburn.git"
},
"scripts": {
"clean": "yarn workspaces run clean",
"clean:contracts": "yarn workspace @snx-flash-tool/contracts clean",
"build": "yarn run build:contracts && yarn build:interface",
"build:contracts": "yarn workspace @snx-flash-tool/contracts build",
"build:interface": "yarn workspace @snx-flash-tool/interface build",
"dev": "yarn workspaces run dev",
"dev:interface": "yarn workspace @snx-flash-tool/interface dev",
"test": "yarn workspaces run test",
"test:contracts": "yarn workspace @snx-flash-tool/contracts test",
"prettier": "yarn workspaces run prettier",
"prettier:contracts": "yarn workspace @snx-flash-tool/contracts prettier",
"prettier:interface": "yarn workspace @snx-flash-tool/interface prettier",
"lint": "yarn workspaces run lint",
"lint:contracts": "yarn workspace @snx-flash-tool/contracts lint",
"lint:interface": "yarn workspace @snx-flash-tool/interface lint",
"evm:contracts": "yarn workspace @snx-flash-tool/contracts evm",
"migrate:contracts": "yarn workspace @snx-flash-tool/contracts migrate",
"export:interface": "yarn workspace @snx-flash-tool/interface export"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**"
]
}
}