-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 979 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
26
27
28
29
30
31
32
33
34
{
"name": "metaloot-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "yarn workspace metaloot-frontend dev",
"lint": "yarn workspace metaloot-frontend lint",
"typecheck": "yarn workspace metaloot-frontend lint",
"build": "run-s build:*",
"build:hardhat": "yarn workspace metaloot-hardhat run build",
"build:frontend": "yarn workspace metaloot-frontend run build",
"start": "yarn workspace metaloot-frontend start",
"chain": "yarn workspace metaloot-hardhat chain",
"deploy": "yarn workspace metaloot-hardhat deploy",
"compile": "yarn workspace metaloot-hardhat compile",
"precommit": "yarn lint-staged",
"prepush": "yarn typecheck"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**"
]
},
"devDependencies": {
"husky": "7.0.2",
"lint-staged": "11.1.2",
"npm-run-all": "^4.1.5",
"typescript": "4.4.2"
}
}