{ "name": "gradido-database", "version": "1.6.5", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", "author": "Ulf Gebhardt", "license": "MIT", "private": false, "scripts": { "build": "mkdir -p build/src/config/ && cp src/config/*.txt build/src/config/ && tsc --build", "clean": "tsc --build --clean", "up": "TZ=UTC node build/src/index.js up", "down": "TZ=UTC node build/src/index.js down", "reset": "TZ=UTC node build/src/index.js reset", "dev_up": "TZ=UTC ts-node src/index.ts up", "dev_down": "TZ=UTC ts-node src/index.ts down", "dev_reset": "TZ=UTC ts-node src/index.ts reset", "lint": "eslint --max-warnings=0 --ext .js,.ts .", "seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config", "seed": "TZ=UTC ts-node src/index.ts seed" }, "devDependencies": { "@types/faker": "^5.5.9", "@types/node": "^16.10.3", "@typescript-eslint/eslint-plugin": "^4.29.2", "@typescript-eslint/parser": "^4.29.2", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.24.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.4.1", "eslint-plugin-promise": "^5.1.0", "prettier": "^2.3.2", "ts-node": "^10.2.1", "typescript": "^4.3.5" }, "dependencies": { "crypto": "^1.0.1", "decimal.js-light": "^2.5.1", "dotenv": "^10.0.0", "faker": "^5.5.3", "mysql2": "^2.3.0", "reflect-metadata": "^0.1.13", "ts-mysql-migrate": "^1.0.2", "typeorm": "^0.2.38", "typeorm-seeding": "^1.6.1" } }