-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
68
69
70
71
72
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "prisma generate && remix build",
"dev": "remix dev",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"postinstall": "prisma generate"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.427.0",
"@aws-sdk/lib-storage": "^3.427.0",
"@aws-sdk/s3-request-presigner": "^3.427.0",
"@balavishnuvj/remix-seo": "^1.0.2",
"@prisma/client": "^5.4.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/css-bundle": "2.13.1",
"@remix-run/node": "2.13.1",
"@remix-run/react": "2.13.1",
"@remix-run/serve": "2.13.1",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"isbot": "^3.6.8",
"lottie-react": "^2.4.0",
"lucide-react": "^0.268.0",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.5",
"prisma": "^5.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
"react-tsparticles": "^2.12.2",
"remix-auth": "^3.6.0",
"remix-auth-form": "^1.4.0",
"remix-utils": "^7.7.0",
"swiper": "9.4.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"tsparticles": "^2.12.0"
},
"devDependencies": {
"@remix-run/dev": "2.13.1",
"@remix-run/eslint-config": "2.13.1",
"@types/bcrypt": "^5.0.0",
"@types/node": "^20.8.4",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.15",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register ./prisma/seed.js"
}
}