forked from BibliothecaDAO/RealmsWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"name": "@realms-world/monorepo",
"private": true,
"engines": {
"node": ">=20.10"
},
"packageManager": "bun@1.0.6",
"workspaces": [
"apps/*",
"config/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo build --filter=!lords-bridge-subgraph",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "bun --cwd packages/db push",
"db:studio": "bun --cwd packages/db studio",
"deps:update": "ncu -i --deep --install never",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --no-error-on-unmatched-pattern",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --no-error-on-unmatched-pattern",
"lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"lint:ws": "bunx sherif@latest",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@manypkg/cli": "^0.21.2",
"@turbo/gen": "^1.11.3",
"npm-check-updates": "^16.14.12",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"turbo": "^1.11.3",
"typescript": "^5.3.3"
},
"prettier": "@realms-world/prettier-config",
"dependencies": {
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.11"
}
}