Skip to content

Commit

Permalink
add procfile and fix port
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo S. de Paula committed Mar 29, 2020
1 parent 1961663 commit 8d02d09
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "backend",
"version": "1.0.0",
"main": "backend/src/server.js",
"author": "Gustavo S. de Paula",
"license": "MIT",
"dependencies": {
"celebrate": "^12.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"knex": "^0.20.13",
"sqlite3": "^4.1.1"
},
"engines": {
"node": "12.14.1"
},
"scripts": {
"start": "node backend/src/server.js",
"dev": "nodemon src/server.js",
"test": "cross-env NODE_ENV=test jest"
},
"devDependencies": {
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"jest": "^25.2.3"

}
}

0 comments on commit 8d02d09

Please sign in to comment.