-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 993 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
26
{
"name": "sortis",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=web",
"build": "npm run build --workspace=web",
"lint": "npm run lint --workspace=web",
"typecheck": "npm run typecheck --workspace=web",
"contracts:compile": "npm run compile --workspace=contracts",
"contracts:abis": "npm run abis --workspace=contracts",
"contracts:test": "npm run test --workspace=contracts",
"contracts:lint": "npm run lint --workspace=contracts",
"contracts:typecheck": "npm run typecheck --workspace=contracts",
"contracts:coverage": "npm run coverage --workspace=contracts",
"contracts:deploy:sepolia": "npm run deploy:sepolia --workspace=contracts",
"contracts:verify:sepolia": "npm run verify:sepolia --workspace=contracts",
"contracts:smoke:sepolia": "npm run smoke:sepolia --workspace=contracts"
},
"overrides": {
"@wagmi/connectors": "6.2.0",
"@wagmi/core": "2.22.1"
}
}