mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
Ormconfig mariadb addition, ts-node to dev dependency
This commit is contained in:
parent
48a1e0c495
commit
6a9d6526a0
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Loading…
Reference in a new issue