-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"dependencies": {
"aws-sdk": "^2.1377.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"formidable": "^2.1.1",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"mysql2": "^3.2.4",
"node-cron": "^3.0.2",
"pm2": "^5.3.0",
"sequelize": "^6.31.0",
"sib-api-v3-sdk": "^8.5.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.22"
},
"name": "chat",
"description": "Prototype chat app",
"version": "1.0.0",
"main": "app.mjs",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.mjs",
"start": "node app.mjs",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windyScripts/chat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/windyScripts/chat/issues"
},
"homepage": "https://github.com/windyScripts/chat#readme"
}