forked from CookbookDev/berachain-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 773 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
27
28
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"with-env": "dotenv -e ./.env --",
"deploy:berachain": "pnpm with-env turbo run deploy:berachain",
"clean": "turbo run clean; rm -rf .turbo; rm -rf node_modules;",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@turbo/gen": "^1.10.14",
"dotenv-cli": "^7.3.0",
"eslint": "^7.32.0",
"prettier": "^2.8.8",
"turbo": "latest"
},
"packageManager": "pnpm@8.15.0",
"name": "docs-monorepo",
"engines": {
"node": ">=20"
}
}