Skip to content

Commit

Permalink
Merge pull request #48 from BernardDev/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
BernardDev committed May 27, 2023
2 parents 747473c + 65705b3 commit af3cdd4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"test": "npm run test-setup-db && npx jest --detectOpenHandles --runInBand",
"test-watch": "npm run test-setup-db && npx jest --detectOpenHandles --runInBand --watch",
"test-setup-db": "NODE_ENV=test npm run undo-migrate && NODE_ENV=test npm run migrate",
"migrate": "npx sequelize db:migrate",
"undo-migrate": "npx sequelize db:migrate:undo:all",
"seed": "npx sequelize db:seed:all",
"undo-seed": "npx sequelize db:seed:undo:all",
"migrate": "npx sequelize-cli db:migrate",
"undo-migrate": "npx sequelize-cli db:migrate:undo:all",
"seed": "npx sequelize-cli db:seed:all",
"undo-seed": "npx sequelize-cli db:seed:undo:all",
"reseed": "npm run undo-migrate && npm run migrate && npm run seed",
"start": "node index.js",
"dev": "npx nodemon index.js",
Expand All @@ -34,11 +34,9 @@
"multer-storage-cloudinary": "^4.0.0",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"supertest": "^6.1.1",
"uuid-apikey": "^1.5.1",
"yup": "^0.32.8"
},
"devDependencies": {
"sequelize-cli": "^6.6.0"
}
}

0 comments on commit af3cdd4

Please sign in to comment.