-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 949 Bytes
/
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
{
"name": "mern-auth",
"version": "1.0.0",
"description": "Mern Auth Example",
"main": "server.js",
"engines": {
"node": "14.17.4"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "node server.js",
"client": "npm start --prefix client",
"dev": "npm run server"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"browserslist": "^4.17.0",
"caniuse-lite": "^1.0.30001257",
"concat-stream": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"express-rate-limit": "^5.5.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.11",
"multer": "^1.4.3",
"nodemailer": "^6.7.0",
"nodemon": "^2.0.14",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"uuid": "^8.3.2",
"validator": "^13.7.0"
}
}