-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 KB
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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"typecheck": "tsc",
"dev": "npm run worker:dev && npm run remix:dev",
"build": "npm run worker:build && npm run remix:build",
"remix:dev": "remix dev",
"remix:build": "remix build",
"postinstall": "prisma generate",
"worker:build": "node ./scripts/sw/build.mjs --prod",
"worker:dev": "node ./scripts/sw/build.mjs --dev"
},
"dependencies": {
"@akamfoad/qrcode": "^0.1.0",
"@prisma/client": "^5.19.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@remix-pwa/strategy": "^2.1.9",
"@remix-pwa/sw": "^2.1.12",
"@remix-run/react": "^2.1.0",
"@simplewebauthn/browser": "^8.3.1",
"@simplewebauthn/server": "^8.3.2",
"@tailwindcss/container-queries": "^0.1.1",
"@vercel/analytics": "^1.5.0",
"@vercel/remix": "^2.1.0",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.1.0",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.0.0-rc23",
"isbot": "^3.7.0",
"lucide-react": "^0.334.0",
"otpauth": "^9.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resend": "^1.1.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^1.0.35",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.1.0",
"@remix-run/eslint-config": "^2.1.0",
"@remix-run/serve": "^2.1.0",
"@simplewebauthn/typescript-types": "^8.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/bcrypt": "^5.0.1",
"@types/node": "^20.8.8",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/ua-parser-js": "^0.7.38",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"prisma": "^5.19.1",
"remix-development-tools": "^3.3.0",
"tailwindcss": "^3.3.4",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}