forked from kindfi-org/kindfi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.75 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.75 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
{
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/inter": "^5.2.6",
"@hookform/resolvers": "^5.1.1",
"@packages/drizzle": "workspace:*",
"@packages/lib": "workspace:*",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@simplewebauthn/server": "^13.1.2",
"@stellar/stellar-sdk": "^14.1.1",
"@supabase/supabase-js": "^2.56.0",
"@tanstack/react-table": "^8.21.3",
"base64url": "^3.0.1",
"bun-plugin-tailwind": "^0.1.2",
"cbor-x": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.513.0",
"next-theme": "^0.1.5",
"postgres": "^3.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.57.0",
"react-router-dom": "^7.2.0",
"react-use": "^17.6.0",
"recharts": "^2.15.3",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.6",
"vaul": "^1.1.2",
"ws": "^8.16.0",
"zod": "^3.25.62"
},
"description": "Kyc server using Bun, React, and TailwindCSS",
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.20.14",
"eslint": "^8.56.0",
"postcss": "^8.5.6",
"prettier": "^3.1.0",
"tailwindcss": "^4.1.11",
"typescript": "^5.3.0"
},
"main": "src/index.tsx",
"module": "src/index.tsx",
"name": "kyc-server",
"private": true,
"scripts": {
"build": "bun build src/index.tsx --outdir dist --target bun --sourcemap --external tailwindcss --external bun-plugin-tailwind --external tailwind-merge --external autoprefixer --external postcss",
"build:node": "bun build src/index.tsx --outdir dist --target node --format esm",
"db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg",
"dev": "cross-env NODE_ENV=development bun --watch src/index.tsx",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint . --ext .ts,.tsx",
"start": "cross-env NODE_ENV=production bun dist/index.js",
"start:node": "cross-env NODE_ENV=production node dist/index.js",
"test": "bun test src/__tests__/*.test.ts",
"test:watch": "bun test --watch src/__tests__/*.test.ts"
},
"type": "module",
"version": "0.1.1",
"packageManager": "bun@1.2.21"
}