|
1 | 1 | { |
2 | 2 | "name": "express-typescript-boilerplate", |
3 | | - "version": "1.0.0", |
4 | | - "description": "Boilerplate for an restful express-apllication written in TypeScript.", |
| 3 | + "version": "1.1.0", |
| 4 | + "description": "Boilerplate for an restful express-application written in TypeScript.", |
5 | 5 | "main": "src/index.ts", |
6 | 6 | "scripts": { |
7 | 7 | "install:typings": "./node_modules/.bin/typings install", |
|
20 | 20 | "db:migrate": "./node_modules/.bin/knex migrate:latest", |
21 | 21 | "db:migrate:rollback": "./node_modules/.bin/knex migrate:rollback", |
22 | 22 | "db:seed": "./node_modules/.bin/knex seed:run", |
23 | | - "db:clean": "ts-node ./src/console/CleanDatabaseCommand.ts", |
| 23 | + "db:clean": "./node_modules/.bin/ts-node ./src/console/CleanDatabaseCommand.ts", |
24 | 24 | "db:refresh": "npm run db:drop && npm run db:migrate", |
25 | | - "start": "node ./src/index.js" |
| 25 | + "start": "node src/index.js" |
26 | 26 | }, |
27 | 27 | "repository": "git+ssh://git@github.com/w3tec/express-typescript-boilerplate.git", |
28 | 28 | "engines": { |
|
60 | 60 | "@types/express": "^4.0.35", |
61 | 61 | "@types/faker": "^4.1.0", |
62 | 62 | "@types/helmet": "0.0.34", |
| 63 | + "@types/inversify": "^2.0.33", |
| 64 | + "@types/inversify-express-utils": "^2.0.0", |
63 | 65 | "@types/knex": "0.0.47", |
64 | 66 | "@types/lodash": "^4.14.63", |
65 | 67 | "@types/morgan": "^1.7.32", |
|
72 | 74 | "bookshelf-camelcase": "^1.1.4", |
73 | 75 | "compression": "^1.6.2", |
74 | 76 | "cors": "^2.8.1", |
75 | | - "dataloader": "^1.3.0", |
76 | 77 | "debug": "^2.6.0", |
77 | 78 | "express": "^4.14.0", |
78 | 79 | "faker": "^3.1.0", |
79 | 80 | "helmet": "^3.4.0", |
| 81 | + "inversify": "^4.1.0", |
| 82 | + "inversify-express-utils": "^3.5.1", |
80 | 83 | "knex": "^0.12.7", |
81 | 84 | "lodash": "^4.17.4", |
82 | 85 | "morgan": "^1.7.0", |
83 | | - "mysql": "^2.13.0", |
| 86 | + "pg": "^6.1.5", |
84 | 87 | "reflect-metadata": "^0.1.10", |
85 | 88 | "request": "^2.81.0", |
86 | 89 | "serve-favicon": "^2.4.2", |
87 | 90 | "ts-node": "^2.0.0", |
88 | | - "winston": "^2.3.1" |
89 | | - }, |
90 | | - "devDependencies": { |
| 91 | + "typescript": "^2.3.2", |
| 92 | + "winston": "^2.3.1", |
91 | 93 | "@types/jest": "^19.2.2", |
92 | 94 | "gulp": "^3.9.1", |
93 | 95 | "gulp-clean": "^0.3.2", |
|
0 commit comments