-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.66 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
42
43
44
{
"name": "deed-protocol",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/hardhat",
"packages/nextjs",
"packages/subgraph/Deed3"
]
},
"scripts": {
"account": "yarn workspace @deed-protocol/hardhat account",
"chain": "yarn workspace @deed-protocol/hardhat chain",
"fork": "yarn workspace @deed-protocol/hardhat fork",
"deploy": "yarn workspace @deed-protocol/hardhat deploy",
"verify": "yarn workspace @deed-protocol/hardhat verify",
"compile": "yarn workspace @deed-protocol/hardhat compile",
"generate": "yarn workspace @deed-protocol/hardhat generate",
"hardhat:lint": "yarn workspace @deed-protocol/hardhat lint",
"hardhat:lint-staged": "yarn workspace @deed-protocol/hardhat lint-staged",
"hardhat:test": "yarn workspace @deed-protocol/hardhat test",
"coverage": "yarn workspace @deed-protocol/hardhat coverage",
"start": "yarn workspace @deed-protocol/nextjs dev",
"next:lint": "yarn workspace @deed-protocol/nextjs lint",
"next:format": "yarn workspace @deed-protocol/nextjs format",
"next:check-types": "yarn workspace @deed-protocol/nextjs check-types",
"postinstall": "husky install",
"precommit": "lint-staged",
"vercel": "yarn workspace @deed-protocol/nextjs vercel",
"vercel:yolo": "yarn workspace @deed-protocol/nextjs vercel:yolo"
},
"packageManager": "[email protected]",
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"resolutions": {
"usehooks-ts@^2.7.2": "patch:usehooks-ts@npm:^2.7.2#./.yarn/patches/usehooks-ts-npm-2.7.2-fceffe0e43.patch"
},
"dependencies": {
"node-gyp": "^9.4.0"
}
}