Files
local-dev-db/package.json
2023-07-16 16:22:08 +02:00

51 lines
1.1 KiB
JSON

{
"name": "@mep-agency/local-dev-db",
"version": "1.0.0-alpha8",
"private": false,
"description": "A zero-config local MariaDB instance for local development (using Docker)",
"author": "Marco Lipparini <developer@liarco.net>",
"license": "MIT",
"keywords": [
"development",
"local",
"database",
"db",
"mysql",
"mariadb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mep-agency/local-dev-db.git"
},
"bugs": {
"url": "https://github.com/mep-agency/local-dev-db/issues"
},
"scripts": {
"build": "rm -rf ./build && tsc",
"watch": "tsc --watch",
"format": "prettier --write \"**/*.{ts,md,scss,css,js}\"",
"lint": "prettier --check \"**/*.{ts,md,scss,css,js}\""
},
"bin": {
"ldd": "./bin/ldd.js"
},
"files": [
"bin",
"build",
"docker",
"LICENCE",
"README.md"
],
"devDependencies": {
"@types/mysql": "^2.15.21",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"dependencies": {
"@inquirer/prompts": "^3.0.0",
"commander": "^11.0.0",
"docker-cli-js": "^2.10.0",
"mysql": "^2.18.1"
}
}