22 lines
696 B
JSON
22 lines
696 B
JSON
{
|
|
"name": "ocapi",
|
|
"version": "1.0.0",
|
|
"description": "// INSTALLLATION\r => Initiate NPM\r => Install express for local PORT\r => Install nodemon to run our application\r => install body-parser in order to get access to the post data,\r which allows express to read the body and then parse that into a Json object that we can understand",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "nodemon index.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"async": "^3.2.3",
|
|
"body-parser": "^1.19.1",
|
|
"dotenv": "^14.2.0",
|
|
"express": "^4.17.2",
|
|
"mysql2": "^2.3.3",
|
|
"nodemon": "^2.0.15",
|
|
"sequelize": "^6.13.0"
|
|
},
|
|
"devDependencies": {}
|
|
}
|