mirror of
https://github.com/docker/awesome-compose.git
synced 2026-04-01 03:55:45 +02:00
Bumps [minimatch](https://github.com/isaacs/minimatch) to 3.1.5 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 3.0.4 to 3.1.5 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](https://github.com/isaacs/minimatch/compare/v3.0.4...v3.1.5) Updates `mocha` from 9.2.2 to 11.7.5 - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/v11.7.5/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v9.2.2...v11.7.5) --- updated-dependencies: - dependency-name: minimatch dependency-version: 3.1.5 dependency-type: indirect - dependency-name: mocha dependency-version: 11.7.5 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
1.0 KiB
JSON
30 lines
1.0 KiB
JSON
{
|
|
"name": "node-docker-good-defaults",
|
|
"private": true,
|
|
"version": "2.0.1",
|
|
"description": "Node.js Hello world app using docker features for easy docker compose local dev and solid production defaults",
|
|
"author": "Bret Fisher <bret@bretfisher.com>",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"start-watch": "nodemon src/index.js --inspect=0.0.0.0:9229",
|
|
"start-wait-debuger": "nodemon src/index.js --inspect-brk=0.0.0.0:9229",
|
|
"test": "cross-env NODE_ENV=test PORT=8081 mocha --timeout 10000 --exit --inspect=0.0.0.0:9230",
|
|
"test-watch": "nodemon --exec \"npm test\"",
|
|
"test-wait-debuger": "cross-env NODE_ENV=test PORT=8081 mocha --no-timeouts --exit --inspect-brk=0.0.0.0:9230"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.17.1",
|
|
"knex": "^0.95.11",
|
|
"morgan": "^1.10.0",
|
|
"mysql2": "^2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"chai-http": "^4.3.0",
|
|
"cross-env": "^7.0.2",
|
|
"mocha": "^11.7.5",
|
|
"nodemon": "^2.0.4"
|
|
}
|
|
}
|