added websockets

This commit is contained in:
Mystikfluu 2022-04-23 17:37:52 +02:00
parent fc87764782
commit 773fa49a3b
3 changed files with 33 additions and 2 deletions

3
.gitignore vendored
View File

@ -107,6 +107,9 @@ cookiesecret.txt
mysql_key.txt mysql_key.txt
mysql_user.txt mysql_user.txt
register.py register.py
output.txt
gen_pw.js
register_account.py
# Docusaurus cache and generated files # Docusaurus cache and generated files
.docusaurus .docusaurus

29
package-lock.json generated
View File

@ -12,7 +12,8 @@
"express-fileupload": "^1.3.1", "express-fileupload": "^1.3.1",
"express-useragent": "^1.0.15", "express-useragent": "^1.0.15",
"helmet": "^5.0.2", "helmet": "^5.0.2",
"mysql": "^2.18.1" "mysql": "^2.18.1",
"ws": "^8.5.0"
} }
}, },
"node_modules/accepts": { "node_modules/accepts": {
@ -971,6 +972,26 @@
"engines": { "engines": {
"node": ">= 0.8" "node": ">= 0.8"
} }
},
"node_modules/ws": {
"version": "8.5.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz",
"integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
}
} }
}, },
"dependencies": { "dependencies": {
@ -1704,6 +1725,12 @@
"version": "1.1.2", "version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
},
"ws": {
"version": "8.5.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz",
"integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==",
"requires": {}
} }
} }
} }

View File

@ -7,6 +7,7 @@
"express-fileupload": "^1.3.1", "express-fileupload": "^1.3.1",
"express-useragent": "^1.0.15", "express-useragent": "^1.0.15",
"helmet": "^5.0.2", "helmet": "^5.0.2",
"mysql": "^2.18.1" "mysql": "^2.18.1",
"ws": "^8.5.0"
} }
} }