-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 KB
/
package.json
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
{
"name": "sill.social",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "NODE_ENV=production react-router build",
"build:worker": "tsx workers/build.ts",
"dev": "NODE_ENV=development react-router dev --host",
"dev:worker": "tsx watch --env-file .env ./workers/process-queue.tsx",
"generate-secrets": "sh ./scripts/generate-secrets.sh",
"lint": "biome check",
"start": "react-router-serve ./build/server/index.js",
"start:worker": "node ./build/worker.js",
"typecheck": "react-router typegen && tsc",
"test": "vitest"
},
"dependencies": {
"@atproto/api": "^0.13.15",
"@atproto/identity": "^0.4.2",
"@atproto/jwk-jose": "^0.1.2",
"@atproto/oauth-client-node": "^0.2.8",
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"@epic-web/client-hints": "^1.3.5",
"@epic-web/invariant": "^1.0.0",
"@epic-web/totp": "^2.0.0",
"@jcottam/html-metadata": "^2.1.1",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/themes": "^3.1.4",
"@react-email/components": "0.0.25",
"@react-router/node": "^7.0.0",
"@react-router/serve": "^7.0.0",
"bcryptjs": "^2.4.3",
"cookie": "^1.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.3",
"feed": "^4.2.2",
"form-data": "^4.0.1",
"input-otp": "^1.2.4",
"isbot": "^5.1.17",
"javascript-time-ago": "^2.5.11",
"lucide-react": "^0.453.0",
"mailgun.js": "^10.2.4",
"masto": "^6.8.0",
"node-html-markdown": "^1.3.0",
"object.groupby": "^1.0.3",
"open-graph-scraper": "^6.8.2",
"pg": "^8.13.1",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router": "^7.0.0",
"react-tweet": "^3.2.1",
"react-youtube": "^10.1.0",
"remix-utils": "^8.0.0",
"resend": "^4.0.1",
"ts-debounce": "^4.0.0",
"uuidv7-js": "^1.1.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@react-router/dev": "^7.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/object.groupby": "^1.0.4",
"@types/pg": "^8.11.10",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.20",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.26.2",
"happy-dom": "^15.7.4",
"postcss": "^8.4.38",
"tsx": "^4.19.2",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"_moduleAliases": {
"~": "build/app"
}
}