🚀 Initial commit for rzmk/smart-brain-api!

This commit is contained in:
rzmk 2022-01-01 09:45:39 -05:00
commit 16e22cda96
10 changed files with 4048 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "smart-brain-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"clarifai": "^2.9.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"knex": "^0.95.15",
"pg": "^8.7.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}