Last active
August 12, 2021 16:44
-
-
Save Adurtxi/1285523d6b46c26287f67b2ec5d75045 to your computer and use it in GitHub Desktop.
NodeJS, Express and MySQL --- package.json
This file contains hidden or 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
| { | |
| "name": "nodejs_express_mysql", | |
| "version": "1.0.0", | |
| "description": "NodeJS Express Mysql JS Backend", | |
| "main": "server.js", | |
| "scripts": { | |
| "start": "nodemon server.js" | |
| }, | |
| "keywords": [ | |
| "NodeJS", | |
| "Api" | |
| ], | |
| "author": "Adur Marques", | |
| "license": "ISC", | |
| "dependencies": { | |
| "express": "^4.17.1", | |
| "mysql2": "^2.3.0", | |
| "node-input-validator": "^4.4.1", | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment