49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@mep-agency/local-dev-db",
|
|
"version": "1.0.0-alpha17",
|
|
"private": false,
|
|
"type": "module",
|
|
"description": "A zero-config local MySQL 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/**/*.js",
|
|
"docker"
|
|
],
|
|
"devDependencies": {
|
|
"prettier": "^2.8.8",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^4.0.0",
|
|
"commander": "^12.0.0",
|
|
"docker-cli-js": "^2.10.0",
|
|
"mysql2": "^3.14.0"
|
|
}
|
|
}
|