forked from boundlessfi/boundless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.17 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "boundless",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"init": "node --import tsx scripts/initialize.ts",
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "biome check --write ./app ./components ./hooks ./lib ./store ./types",
"lint:fix": "biome check --fix --unsafe ./app ./components ./hooks ./lib ./store ./types",
"lint:check": "biome check ./app ./components ./hooks ./lib ./store ./types",
"format": "prettier --write \"**/*.{js,mjs,jsx,ts,tsx,json,graphql,css,md}\"",
"format:check": "prettier --check \"**/*.{js,mjs,jsx,ts,tsx,json,graphql,css,md}\"",
"postinstall": "npx prisma generate",
"prisma:studio": "npx prisma studio",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate dev",
"prisma:seed": "npx prisma db seed",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md,css,scss}": [
"biome format --write",
"biome lint --write"
]
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.js"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@creit.tech/stellar-wallets-kit": "^1.4.1",
"@hookform/resolvers": "^4.1.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.3.1",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.7",
"@stellar/freighter-api": "^3.1.0",
"@stellar/stellar-sdk": "^13.1.0",
"@tanstack/react-query": "^5.66.11",
"@types/pg": "^8.11.11",
"@vercel/blob": "^0.27.1",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"framer-motion": "^12.4.2",
"glob": "^11.0.1",
"lucide-react": "^0.474.0",
"next": "^15.1.6",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"pg": "^8.13.1",
"prettier": "^3.5.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.1",
"resend": "^4.1.2",
"sonner": "^2.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5"
}
}