forked from ButterDebugger/WonkChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 912 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
38
39
40
41
42
{
"name": "void-chat",
"version": "a-Rel-1.1.1",
"description": "Void Chat",
"main": "server.js",
"scripts": {
"start": "node server.js -log",
"dev": "nodemon"
},
"author": "ButterDebugger",
"contributor/coauthor": "HeyItsSloth",
"license": "BD&S/MIT",
"type": "module",
"dependencies": {
"axios": "^1.3.3",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"open": "^9.1.0",
"uws": "^200.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"nodemon": "^2.0.22"
},
"nodemonConfig": {
"ignore": [
"storage/attachments",
"public"
],
"ext": "js",
"exec": "npm start"
}
}