-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.14 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": "chat-final",
"version": "1.0.0",
"description": "Let's chat, web app to communicate between people",
"main": "server.js",
"scripts": {
"start": "node server",
"dev": "NODE_ENV=development nodemon server",
"lint": "eslint src --ext .js",
"lint-fix": "eslint ./ --ext .js --fix"
},
"author": "thecactoos",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.845.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"multer": "^1.4.2",
"multer-s3-transform": "^2.10.3",
"sharp": "^0.27.1",
"socket.io": "^4.6.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"prettier": "^2.2.1"
}
}