-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
{
"name": "remix-express-template",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "remix vite:build",
"build:server": "tsup",
"db:migrate": "node ./dist/db-migrate.js",
"dev": "cross-env NODE_ENV=development tsx --watch --watch-path=./src ./src/main.ts",
"dev:emails": "email dev --dir ./src/emails",
"format:client": "biome format ./app/*.tsx ./app/**/*.tsx ./app/*.ts ./app/**/*.ts --write",
"format:server": "biome format ./src/*.ts ./src/**/*.ts --write",
"lint": "biome lint ./src ./app",
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@bull-board/api": "^5.20.5",
"@bull-board/express": "^5.20.5",
"@react-email/components": "^0.0.22",
"@remix-run/express": "^2.10.2",
"@remix-run/node": "^2.10.2",
"@remix-run/react": "^2.10.2",
"@tanstack/react-query": "^4.18.0",
"body-parser": "^1.20.2",
"bullmq": "^5.8.4",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"minio": "^8.0.1",
"pino": "^9.2.0",
"pino-http": "^10.2.0",
"pino-pretty": "^11.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stripe": "^16.2.0",
"swagger-ui-express": "^5.0.1",
"trpc-openapi": "^1.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@mdx-js/rollup": "^3.0.1",
"@radix-ui/react-slot": "^1.1.0",
"@remix-run/dev": "^2.10.2",
"@tailwindcss/typography": "^0.5.13",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/swagger-ui-express": "^4.1.6",
"arctic": "^1.9.1",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-kit": "^0.22.8",
"drizzle-orm": "^0.31.4",
"drizzle-zod": "^0.5.1",
"isbot": "^5.1.12",
"lodash": "^4.17.21",
"lucia": "^3.2.0",
"lucide-react": "^0.407.0",
"nanoid": "^5.0.7",
"oslo": "^1.2.1",
"postcss": "^8.4.39",
"postgres": "^3.4.4",
"react-email": "^2.1.6",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-toc": "^9.0.0",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.13.1",
"pnpm": "9.1.1"
}
}