forked from Astrea-Payouts/astrea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "astrea",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"postinstall": "prisma generate",
"demo:e06": "tsx scripts/e06-vertical-slice.ts",
"demo:seed": "tsx scripts/seed-demo-event.ts"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@creit.tech/stellar-wallets-kit": "^2.5.0",
"@prisma/adapter-pg": "^7.9.0",
"@prisma/client": "^7.9.0",
"@stellar/stellar-sdk": "^16.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.26.0",
"next": "16.2.11",
"ogl": "^1.0.11",
"pg": "^8.22.0",
"prisma": "^7.9.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.14.1",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"overrides": {
"protobufjs": "^8.7.1",
"axios": "^1.18.1",
"elliptic": "^6.6.1",
"uuid": "^14.0.1"
}
}