-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "safalmudra",
"version": "1.0.0",
"description": "SafalMudra Web Application",
"main": "src/server.js",
"private": true,
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.js",
"client": "cd client && npm start",
"dev:full": "concurrently \"npm run dev\" \"npm run client\"",
"build": "babel src -d dist --copy-files",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"docker": "^1.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"framer-motion": "^12.4.10",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.0",
"lucide-react": "^0.338.0",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.0",
"redis": "^4.6.7",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.20",
"concurrently": "^8.0.1",
"nodemon": "^3.1.9",
"postcss": "^8.5.3",
"rimraf": "^5.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.3.3",
"vite": "^6.2.1"
}
}