-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
36
37
{
"name": "webchat",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "npm run build && node main.js",
"test": "npm run watch & TEST=true node main.js",
"watch": "node ./node_modules/nodemon/bin/nodemon",
"build": "node ./node_modules/gulp/bin/gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RodnyE/Chat.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.3.0",
"assign-symbols": "^2.0.2",
"autoprefixer": "^10.4.14",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.2.3",
"cors": "^2.8.5",
"eruda": "^2.11.3",
"eventemitter3": "^5.0.0",
"express": "^4.18.2",
"gulp": "^4.0.2",
"jsonwebtoken": "^8.3.0",
"mysql2": "^3.2.0",
"nodemon": "^2.0.21",
"postcss": "^8.4.21",
"sequelize": "^6.29.3",
"socket.io": "^4.6.1"
},
"devDependencies": {
"nodemon": "^2.0.21"
}
}