-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "malicious-url-detector",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "node --experimental-modules server/index.js",
"server:dev": "nodemon --experimental-modules server/index.js"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.4",
"@supabase/supabase-js": "^2.86.0",
"@types/js-cookie": "^3.0.6",
"@types/leaflet": "^1.9.8",
"autoprefixer": "^10.4.18",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"framer-motion": "^11.0.8",
"helmet": "^7.1.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"mongoose": "^8.2.1",
"postcss": "^8.4.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.0",
"react-hot-toast": "^2.4.1",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.22.3",
"recharts": "^2.12.2",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"tailwindcss": "^3.4.1",
"winston": "^3.12.0",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"nodemon": "^3.1.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.3"
}
}