-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "mern-auth",
"version": "1.0.0",
"type": "module",
"description": "MERN authentication system",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Brad Traversy",
"license": "MIT",
"dependencies": {
"@heroicons/react": "^2.1.5",
"@material-tailwind/react": "^2.1.10",
"@material-ui/core": "^4.12.4",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^4.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"firebase": "^10.13.2",
"install": "^0.13.0",
"javascript-time-ago": "^2.5.11",
"jsonwebtoken": "^9.0.0",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.3",
"mongoose": "^7.1.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"notistack": "^3.0.1",
"npm": "^10.9.0",
"react-icons": "^5.3.0",
"react-time-ago": "^7.3.3",
"recharts": "^2.12.7"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.22"
}
}