forked from berachain/guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1018 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
31
32
33
34
35
36
37
38
39
{
"name": "guides",
"private": true,
"contributors": [
{
"name": "De",
"url": "https://github.com/dethebera"
}
],
"author": {
"name": "@codingwithmanny",
"url": "https://github.com/codingwithmanny"
},
"scripts": {
"clean": "turbo clean; rm -rf node_modules; rm -rf .turbo;",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"with-env": "dotenv -e ./.env --",
"deploy:berachain": "pnpm with-env turbo run deploy:berachain",
"verify": "pnpm with-env turbo run verify",
"postinstall": "cd apps/walletconnect-expo; pnpm install --ignore-workspace;"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.1.0",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"dependencies": {
"dotenv-cli": "^7.3.0"
}
}