Initial commit

This commit is contained in:
Andrew 2023-03-26 14:40:47 +07:00
commit 24f0a28a3c
25 changed files with 3190 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "balance-wheel",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node app.js",
"watch": "nodemon -L --watch public --watch routes --watch views --watch db -e js,css,html,hbs app.js",
"docker-release": "docker build -f Dockerfile.node -t nuark/balance_wheel:latest . && docker push nuark/balance_wheel:latest"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-session": "^1.17.3",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"nedb-session-store": "^1.1.2",
"pg": "^8.8.0"
}
}