-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 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
{
"name": "my-eth-starter",
"author": "@nezz0746",
"license": "MIT",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"deploy:local": "yarn workspace contracts run deploy:local && yarn workspace wagmi-config run generate && yarn workspace metadata-scripts upload:local && yarn workspace subgraph run deploy:local",
"deploy:testnets": "yarn workspace contracts run deploy:testnets && yarn workspace wagmi-config run generate && yarn workspace subgraph run deploy:testnets",
"lint": "turbo run lint",
"test": "turbo run test",
"test:force": "turbo run test --force",
"web:codegen": "yarn workspace rtk-codegen-scripts codegen",
"add:web": "yarn workspace web add",
"add:wagmi": "yarn workspace wagmi-config add",
"add:subgraph": "yarn workspace subgraph add",
"add:rtk-codegen-scripts": "yarn workspace rtk-codegen-scripts add",
"add:metadata": "yarn workspace metadata-scripts add",
"prepare": "husky install",
"postinstall": "npx patch-package"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"husky": "^8.0.3",
"turbo": "^1.10.16"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}