File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 44 "description" : " A delightful way to building a RESTful API with NodeJs & TypeScript" ,
55 "main" : " src/app.ts" ,
66 "engines" : {
7- "node" : " 8.2 .1"
7+ "node" : " >= 6.9 .1"
88 },
99 "scripts" : {
1010 "start" : " node dist/app.js" ,
8585 "helmet" : " ^3.9.0" ,
8686 "inquirer" : " ^3.3.0" ,
8787 "inversify" : " ^4.5.0" ,
88- "inversify-express-utils" : " ^4.1.0 " ,
88+ "inversify-express-utils" : " ^4.2.2 " ,
8989 "jsonwebtoken" : " ^8.1.0" ,
9090 "knex" : " ^0.13.0" ,
9191 "lodash" : " ^4.17.4" ,
Original file line number Diff line number Diff line change 1+ import 'reflect-metadata';
12import * as Knex from 'knex';
23
34import { Factory } from '../factories';
Original file line number Diff line number Diff line change 1+ import 'reflect-metadata' ;
12import * as Knex from 'knex' ;
23
34import { Factory } from '../factories' ;
45import { User } from '../../api/models/User' ;
56
6-
77exports . seed = async ( db : Knex ) => {
88 const factory = Factory . getInstance ( ) ;
99 await factory . get ( User )
Original file line number Diff line number Diff line change @@ -2309,7 +2309,7 @@ invariant@^2.2.2:
23092309 dependencies :
23102310 loose-envify "^1.0.0"
23112311
2312- inversify-express-utils@^4.1.0 :
2312+ inversify-express-utils@^4.2.2 :
23132313 version "4.2.2"
23142314 resolved "https://registry.yarnpkg.com/inversify-express-utils/-/inversify-express-utils-4.2.2.tgz#dd0a733cfdc7250a09132f7e694afd928ede6583"
23152315 dependencies :
You can’t perform that action at this time.
0 commit comments