mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "database",
|
|
"version": "2.6.0",
|
|
"description": "Gradido Database Tool to execute database migrations",
|
|
"main": "./build/index.js",
|
|
"types": "./entity/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/index.js",
|
|
"require": "./build/index.js"
|
|
}
|
|
},
|
|
"repository": "https://github.com/gradido/gradido/database",
|
|
"author": "Gradido Academy - https://www.gradido.net",
|
|
"license": "Apache-2.0",
|
|
"private": false,
|
|
"scripts": {
|
|
"build": "tsx ./esbuild.config.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check --error-on-warnings .",
|
|
"lint:fix": "biome check --error-on-warnings . --write",
|
|
"clear": "cross-env TZ=UTC tsx src/index.ts clear",
|
|
"up": "cross-env TZ=UTC tsx src/index.ts up",
|
|
"down": "cross-env TZ=UTC tsx src/index.ts down",
|
|
"reset": "cross-env TZ=UTC tsx src/index.ts reset",
|
|
"up:backend_test": "cross-env TZ=UTC DB_DATABASE=gradido_test_backend tsx src/index.ts up",
|
|
"up:federation_test": "cross-env TZ=UTC DB_DATABASE=gradido_test_federation tsx src/index.ts up",
|
|
"up:dht_test": "cross-env TZ=UTC DB_DATABASE=gradido_test_dht tsx src/index.ts up"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@types/faker": "^5.5.9",
|
|
"@types/geojson": "^7946.0.13",
|
|
"@types/node": "^17.0.21",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"@types/uuid": "^8.3.4",
|
|
"cross-env": "^7.0.3",
|
|
"decimal.js-light": "^2.5.1",
|
|
"dotenv": "^10.0.0",
|
|
"esbuild": "^0.25.2",
|
|
"geojson": "^0.5.0",
|
|
"mysql2": "^2.3.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"ts-mysql-migrate": "^1.0.2",
|
|
"tsx": "^4.19.4",
|
|
"typeorm": "^0.3.16",
|
|
"uuid": "^8.3.2",
|
|
"wkx": "^0.5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|