-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"start": "wrangler pages dev --compatibility-date=2023-06-21 ./public",
"typecheck": "tsc",
"generate": "drizzle-kit generate:sqlite --schema=app/db/schema.ts",
"up": "drizzle-kit up:sqlite"
},
"dependencies": {
"@remix-run/cloudflare": "^1.19.0",
"@remix-run/cloudflare-pages": "^1.19.0",
"@remix-run/css-bundle": "^1.19.0",
"@remix-run/react": "^1.19.0",
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.27.2",
"geoip-country": "^4.2.6",
"isbot": "^3.6.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.5.0",
"remix-auth-form": "^1.3.0",
"ua-parser-js": "^1.0.35",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^1.19.0",
"@remix-run/eslint-config": "^1.19.0",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/ua-parser-js": "^0.7.36",
"better-sqlite3": "^8.5.0",
"drizzle-kit": "^0.19.10",
"eslint": "^8.45.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"wrangler": "^3.3.0"
},
"engines": {
"node": ">=16.13.0"
}
}