-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "core",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.16.0"
},
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "pnpm --filter @realms-world/account-portal dev",
"apibara:start": "pnpm --filter @realms-world/apibara start",
"apibara:build": "pnpm --filter @realms-world/apibara build",
"db:push": "pnpm --filter @realms-world/db with-env drizzle-kit push",
"db:pull": "pnpm --filter @realms-world/db with-env drizzle-kit pull",
"lint": "pnpm --recursive run lint"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"@eslint/js": "^9.39.2",
"@realms-world/eslint-config": "workspace:*",
"@realms-world/prettier-config": "workspace:*",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript-eslint": "^8.55.0"
},
"prettier": "@realms-world/prettier-config",
"pnpm": {
"ignoredBuiltDependencies": [
"bufferutil",
"cbor-extract",
"esbuild",
"protobufjs",
"utf-8-validate"
],
"onlyBuiltDependencies": [
"@reown/appkit"
]
},
"overrides": {
"@noble/ciphers": "1.3.0",
"starknet": "^9.2.1"
},
"workspaces": {
"packages": [
"./apps/**",
"./packages/**",
"./tooling/**"
],
"catalog": {
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"zod": "^3.25.76",
"dotenv-cli": "^7.4.4",
"starknet": "^9.2.1",
"viem": "^2.45.3",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"typescript": "^5.9.3"
}
}
}