-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 750 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 750 Bytes
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
{
"name": "back-end",
"version": "1.0.0",
"description": "3almadmoon back-end with nodeJS",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"create-admin": "node ./app/utils/sysman/CreateAdmin.js",
"send-test-mail": "node ./app/utils/mail/SendTestMail.js"
},
"author": "Ferchichi Afef",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.3.0",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoosastic": "^4.6.0",
"mongoose": "^5.10.0",
"multer": "^1.4.2"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}