-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 824 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 824 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
29
30
31
32
33
34
35
{
"name": "sentriscloud-frontend",
"version": "0.0.0",
"private": true,
"description": "Monorepo for SentrisCloud user-facing products (explorer, wallet, faucet, exchange, landing).",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"playwright": "^1.59.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "19",
"react-dom": "19"
}
},
"overrides": {
"porto>zod": "^4.4.2",
"wagmi": "2.19.5"
}
}
}