-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "merncamp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r esm src/app.js",
"start": "node -r esm src/app.js",
"lint": "eslint --ext js,jsx src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^2.0.13"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.27.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.9",
"morgan": "^1.10.0",
"nanoid": "^3.1.30",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}