-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 984 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 984 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
{
"name": "@subsquid/subsquid-web",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:client": "turbo run build --filter=@subsquid/client",
"build:server": "turbo run build --filter=@subsquid/server",
"build:common": "turbo run build --filter=@subsquid/common",
"tsc": "turbo run tsc",
"lint": "turbo run lint",
"codegen:graphql": "npx graphql-codegen --config packages/server/graphql.config.ts",
"codegen:wagmi": "pnpm --filter @subsquid/client codegen:wagmi",
"codegen": "pnpm codegen:graphql && pnpm codegen:wagmi",
"upg": "pnpm update --interactive -r"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/client-preset": "^5.2.2",
"@types/node": "^22.19.11",
"dotenv": "^17.2.3",
"turbo": "^2.8.10",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.0"
}