express-typescript-boilerplate
express-typescript-boilerplate copied to clipboard
Upgrade depdencies
Upgrading dependencies ⛑️:
☑️bcrypt
☑️class-validator
☑️dataloader
☑️graphql
☑️typedi
☑️typeorm
☑️typeorm-seeding
☑️sqlite
☑️typescript
adding docker-compose for running web-server with postgres & postgres admin console
✳️ Tested both with docker & locally on windows 10
cool! I ran it locally and finally, it worked. Those outdated dependencies didn't allow me to start this boilerplate locally. But with your pr it worked. Thanks!
though I had to do a slight change in order to make yarn setup
run smoothly.
in
./commands/seed.ts
on line 2
import commander from 'commander'; // < --- NEW works import * as commander from 'commander'; // < --- OLD fails with errors in console, that .version() is not defined