This commit is contained in:
Andrew 2022-03-14 13:35:21 +07:00
parent f662d9933f
commit cb0a0dee2b
11 changed files with 116895 additions and 0 deletions

23
w7/package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "w7",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"watch": "nodemon -e *",
"build": "docker build -t nuark/w7_bld ."
},
"author": "nuark",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3",
"mustache": "^4.2.0",
"socket.io": "^4.4.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}