generated from xanthous-tech/remix-express-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
119 lines (119 loc) · 3.81 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "remix-express-template",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"app:typegen": "react-router typegen",
"site:check": "astro check",
"build": "npm run app:typegen && npm run site:check && npm run build:app && npm run build:site && npm run build:server",
"build:app": "react-router build",
"build:server": "tsup",
"build:site": "astro build",
"db:migrate": "node ./dist/db-migrate.js",
"dev": "cross-env NODE_ENV=development vite --port 3000",
"dev:emails": "email dev --dir ./server/emails",
"dev:site": "astro dev",
"format:app": "biome format ./app/*.tsx ./app/**/*.tsx ./app/*.ts ./app/**/*.ts --write",
"format:site": "biome format ./site/*.mdx ./site/**/*.mdx ./site/*.tsx ./site/**/*.tsx ./site/*.ts ./site/**/*.ts ./site/*.astro ./site/**/*.astro --write",
"format:server": "biome format ./server/*.ts ./server/**/*.ts --write",
"lint": "biome lint ./server ./app ./site ./shared",
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/starlight": "^0.30.3",
"@bull-board/api": "^6.1.0",
"@bull-board/hono": "^6.1.0",
"@hono/node-server": "^1.13.2",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-email/components": "^0.0.25",
"@react-router/node": "^7.0.1",
"@tanstack/react-query": "^5.59.13",
"bullmq": "^5.19.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.7.1",
"ioredis": "^5.4.1",
"minio": "^8.0.1",
"next-themes": "^0.4.4",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-router": "^7.0.1",
"sonner": "^1.7.1",
"stripe": "^17.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.2",
"@astrojs/react": "^4.1.1",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"@biomejs/biome": "^1.9.3",
"@hono/vite-dev-server": "^0.16.0",
"@hono/zod-validator": "^0.4.1",
"@mdx-js/rollup": "^3.0.1",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@oslojs/jwt": "^0.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@react-router/dev": "^7.0.1",
"@react-router/fs-routes": "^7.0.1",
"@tailwindcss/typography": "^0.5.15",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"arctic": "^2.3.0",
"astro": "^5.0.9",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-kit": "^0.25.0",
"drizzle-orm": "^0.34.1",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.12",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.0",
"isbot": "^5.1.17",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"lucide-react": "^0.452.0",
"luxon": "^3.5.0",
"postcss": "^8.4.47",
"postgres": "^3.4.4",
"react-email": "^3.0.1",
"react-i18next": "^15.1.1",
"remix-hono": "^0.0.17",
"remix-i18next": "^7.0.0",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.13.1",
"pnpm": "9.1.1"
}
}