-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.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
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
66
67
68
69
70
71
72
73
{
"name": "swapper",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "next experimental-analyze",
"analyze:static": "ANALYZE=true next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"dev:docker": "docker compose up -d db && bun dev",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@next/bundle-analyzer": "^16.1.6",
"@playwright/test": "^1.58.1",
"@stylexjs/babel-plugin": "^0.17.5",
"@stylexjs/nextjs-plugin": "^0.11.1",
"@stylexjs/postcss-plugin": "^0.17.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "latest",
"@types/node": "^25.2.1",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prisma": "^7.3.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@solana-program/system": "^0.11.0",
"@solana-program/token": "^0.10.0",
"@solana-program/token-2022": "^0.9.0",
"@solana/kit": "^6.0.1",
"@solana/react": "^6.0.1",
"@stylexjs/stylex": "^0.17.5",
"@t3-oss/env-nextjs": "^0.13.10",
"@wallet-standard/react": "^1.0.1",
"axios": "^1.13.4",
"bs58": "^6.0.0",
"decimal.js": "^10.6.0",
"lru-cache": "^11.2.5",
"next": "^16.1.6",
"pg": "^8.18.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"server-only": "^0.0.1",
"viem": "^2.45.1",
"zod": "^4.3.6"
}
}