-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 865 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
{
"name": "web-playground",
"description": "The Web3 Boilerplate Monorepo.",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"dev": "TURBO_UI=true turbo dev --parallel",
"start": "turbo start --parallel",
"build": "turbo build",
"load-env": "yarn vercel env pull .env --cwd ./apps/dusk-explorer && yarn vercel env pull .env --cwd ./apps/omniscient && yarn vercel env pull .env --cwd ./apps/premier",
"clean": "turbo clean && git clean -xdf node_modules",
"quality": "biome check . && turbo quality --parallel",
"quality:fix": "biome check . --apply && turbo quality:fix --parallel"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"turbo": "^2.0.1",
"typescript": "^5.4.2",
"vercel": "^34.0.0"
},
"workspaces": [
"apps/*",
"contracts/*",
"packages/*",
"configs/*"
],
"packageManager": "[email protected]"
}