-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.34 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
{
"name": "node-video-manager",
"private": true,
"description": "A Lightweight video manager",
"repository": "https://github.com/mkromis/node-video-manager",
"author": "Mark Kromis <[email protected]>",
"sideEffects": false,
"type": "module",
"imports": {
"#*": "./*",
"~*": "./app/*"
},
"scripts": {
"db:gen": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"biome:lint": "biome lint .",
"biome:format": "biome format . --write",
"biome:check": "biome check .",
"biome:check:apply": "biome check . --apply",
"build": "remix vite:build",
"dev": "node -r dotenv/config ./server.mjs",
"format": "prettier --write .",
"lint": "pnpm run biome:lint",
"start": "cross-env NODE_ENV=production node ./server.mjs",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc",
"validate": "npm run lint && npm run typecheck"
},
"dependencies": {
"@conform-to/react": "1.2.2",
"@conform-to/zod": "1.2.2",
"@epic-web/client-hints": "^1.3.5",
"@prisma/client": "5.20.0",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@react-email/components": "^0.0.25",
"@react-email/render": "^1.0.1",
"@remix-run/express": "^2.13.1",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/router": "^1.20.0",
"argon2": "^0.41.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"compression": "^1.7.4",
"cookie": "^1.0.1",
"cross-env": "^7.0.3",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"i18next": "^23.16.2",
"i18next-browser-languagedetector": "^8.0.0",
"isbot": "^5.1.17",
"lucide-react": "^0.452.0",
"morgan": "^1.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-email": "^3.0.1",
"react-i18next": "^15.0.3",
"remix-auth": "^3.7.0",
"remix-auth-form": "^1.5.0",
"remix-auth-github": "^2.0.0",
"remix-auth-totp": "^3.4.2",
"remix-i18next": "^6.4.1",
"remix-utils": "7.7.0",
"sonner": "^1.5.0",
"stripe": "^17.2.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"tsx": "4.19.1",
"video-react": "^0.16.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.9",
"@remix-run/dev": "^2.13.1",
"@types/compression": "^1.7.5",
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/video-react": "^0.15.8",
"@vitest/coverage-v8": "^2.1.2",
"autoprefixer": "^10.4.20",
"biome": "^0.3.3",
"dotenv": "^16.4.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.20.0",
"remix-development-tools": "^4.7.3",
"remix-flat-routes": "^0.6.5",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}