-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "rest-api-sandbox",
"version": "1.0.0",
"description": "This is sandbox REST API, NodeJS, Express, MongoDB",
"main": "server",
"scripts": {
"start": "node server",
"dev": "concurrently \"npm run server\" --names \"🔥 BACKEND\" --prefix name -c \"bgCyan.black\" ",
"server": "nodemon server"
},
"keywords": [
"NodeJS",
"Express",
"MongoDB"
],
"author": "Dmitriy",
"license": "ISC",
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.17.0",
"cors": "^2.8.5",
"custom-env": "^1.0.2",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"http-errors": "^1.7.3",
"identicon.js": "^2.3.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"concurrently": "^5.0.0",
"eslint": "^6.2.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
}
}