-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "settlemint-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"check": "biome ci --organize-imports-enabled=false src/ && bunx tsc",
"lint": "biome lint --write --unsafe src/",
"format": "biome format --write src/",
"codegen": "bun scripts/codegen.ts",
"predev": "bun codegen",
"prebuild": "bun codegen",
"ci": "next build"
},
"dependencies": {
"@tanstack/react-query": "5.64.0",
"connectkit": "1.8.2",
"encoding": "0.1.13",
"next": "15.1.4",
"openapi-fetch": "0.13.4",
"path-to-regexp": "8.2.0",
"pino-pretty": "13.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"wagmi": "2.14.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.1.16",
"@types/node": "22.10.5",
"@types/react": "19.0.6",
"@types/react-dom": "19.0.3",
"openapi-typescript": "7.5.2",
"postcss": "8.4.49",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
}
}