mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -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 = [
|
||||
{
|
||||
|
@ -84,8 +84,8 @@ module.exports = [
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "mysql",
|
||||
"type": "mysql",
|
||||
"name": "mariadb",
|
||||
"type": "mariadb",
|
||||
"database": "n8n",
|
||||
"username": "root",
|
||||
"password": "password",
|
||||
|
|
|
@ -72,7 +72,8 @@
|
|||
"run-script-os": "^1.0.7",
|
||||
"ts-jest": "^24.0.2",
|
||||
"tslint": "^5.17.0",
|
||||
"typescript": "~3.7.4"
|
||||
"typescript": "~3.7.4",
|
||||
"ts-node": "^8.9.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@oclif/command": "^1.5.18",
|
||||
|
@ -105,7 +106,6 @@
|
|||
"request-promise-native": "^1.0.7",
|
||||
"sqlite3": "^4.2.0",
|
||||
"sse-channel": "^3.1.1",
|
||||
"ts-node": "^8.9.1",
|
||||
"typeorm": "^0.2.24"
|
||||
},
|
||||
"jest": {
|
||||
|
|
Loading…
Reference in a new issue