-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.59 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.59 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
{
"name": "arc-folder-archiver",
"version": "v0.0.1",
"private": true,
"sideEffects": true,
"type": "module",
"description": "Arc Folder Archiver Tool",
"author": "Flawn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flawn/arc-folder-archiver"
},
"packageManager": "bun@1.2.20",
"scripts": {
"build": "cross-env NODE_ENV=production react-router build",
"dev": "bunx --bun vite",
"start": "cross-env NODE_ENV=production bun ./build/server/index.js",
"start:docker": "bun run db:migrateprod && bunx cross-env NODE_ENV=production bun ./build/server/index.js",
"db:migrateprod": "NODE_ENV=production bun drizzle/migrate.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "react-router typegen && tsc",
"check": "biome check --write ."
},
"dependencies": {
"@electric-sql/pglite": "^0.3.10",
"@radix-ui/react-slot": "^1.2.3",
"@react-router/node": "^7.9.2",
"@react-router/serve": "^7.9.2",
"@sentry/bun": "^10.17.0",
"@sentry/react": "^10.17.0",
"@sentry/react-router": "^10.17.0",
"axios": "^1.12.2",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"framer-motion": "^12.23.22",
"hono": "^4.9.8",
"isbot": "^5.1.31",
"lucide-react": "^0.544.0",
"nanoid": "^5.1.6",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"react-router": "^7.9.2",
"react-router-hono-server": "^2.21.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@react-router/dev": "^7.9.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/bun": "^1.2.22",
"@types/node": "^20.19.17",
"@types/pg": "^8.15.5",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^4.7.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.31.4",
"happy-dom": "^15.11.7",
"autoprefixer": "^10.4.21",
"tailwindcss": "^3.4.17",
"postcss": "^8.5.6",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vite": "^5.4.20",
"vite-tsconfig-paths": "^5.1.4"
},
"overrides": {
"hono": "^4.7.5"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild",
"workerd"
]
}