-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "mern-auth",
"version": "1.0.0",
"type": "module",
"description": "MERN authentication system",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"engines": {
"node": ">=14.20.1"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "5.9.1",
"mongoose": "^7.1.0",
"multer": "^1.4.5-lts.1",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.9.6",
"speakeasy": "^2.0.0",
"yarn": "^1.22.21"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.22"
},
"resolutions": {
"multer-gridfs-storage/mongodb": "^5.9.1"
}
}