Ormconfig mariadb addition, ts-node to dev dependency

This commit is contained in:
Rupenieks 2020-05-04 11:18:28 +02:00
parent 48a1e0c495
commit 6a9d6526a0
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
import {MongoDb, SQLite, MySQLDb, PostgresDb} from './src/databases/index'; import {MongoDb, SQLite, MySQLDb, PostgresDb} from '../src/databases/index';
module.exports = [ module.exports = [
{ {
@ -84,8 +84,8 @@ module.exports = [
} }
}, },
{ {
"name": "mysql", "name": "mariadb",
"type": "mysql", "type": "mariadb",
"database": "n8n", "database": "n8n",
"username": "root", "username": "root",
"password": "password", "password": "password",

View file

@ -72,7 +72,8 @@
"run-script-os": "^1.0.7", "run-script-os": "^1.0.7",
"ts-jest": "^24.0.2", "ts-jest": "^24.0.2",
"tslint": "^5.17.0", "tslint": "^5.17.0",
"typescript": "~3.7.4" "typescript": "~3.7.4",
"ts-node": "^8.9.1"
}, },
"dependencies": { "dependencies": {
"@oclif/command": "^1.5.18", "@oclif/command": "^1.5.18",
@ -105,7 +106,6 @@
"request-promise-native": "^1.0.7", "request-promise-native": "^1.0.7",
"sqlite3": "^4.2.0", "sqlite3": "^4.2.0",
"sse-channel": "^3.1.1", "sse-channel": "^3.1.1",
"ts-node": "^8.9.1",
"typeorm": "^0.2.24" "typeorm": "^0.2.24"
}, },
"jest": { "jest": {