-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.0.2
- Loading branch information
Showing
32 changed files
with
1,309 additions
and
952 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"name": "DonVietnam", | ||
"email": "[email protected]" | ||
}, | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Server for web-soft-projects.", | ||
"license": "MIT", | ||
"keywords": [ | ||
|
@@ -37,16 +37,19 @@ | |
"start": "node index.js", | ||
"dev": "nodemon --signal SIGTERM --exec \"node src/index.js\"", | ||
"dev-docker": "docker volume create pgdata && docker compose up -d && npm run dev", | ||
"docker": "docker volume create pgdata && docker compose up -d", | ||
"certs": "bash ./certs.sh", | ||
"lint": "eslint --ignore-path .eslintignore .", | ||
"fix": "eslint --fix --ignore-path .eslintignore .", | ||
"test": "jest test" | ||
"test": "jest test/unit", | ||
"integration": "cross-env PGHOST=localhost PGUSER=test_user PGDATABASE=test_db PGPASSWORD=test_password PGPORT=5432 HOST=localhost PORT=8000 jest test/integration" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^16.11.7", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^7.8.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"jest": "^27.3.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.