-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 924 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
{
"name": "drink_master-back",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node ./server.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./server.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"author": "Dmytro Kozlovskyi",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"gravatar": "^1.8.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.9.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.7",
"nodemon": "^2.0.7",
"query-string": "^7.0.0",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.1"
}
}