mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-19 07:18:06 +02:00
Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 0.1.10 and updates ancestor dependency [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `path-to-regexp` from 0.1.7 to 0.1.10 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](https://github.com/pillarjs/path-to-regexp/compare/v0.1.7...v0.1.10) Updates `express` from 4.17.1 to 4.20.0 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.17.1...4.20.0) --- updated-dependencies: - dependency-name: path-to-regexp dependency-type: indirect - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
1 KiB
JSON
29 lines
1 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.20.0",
|
|
"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": "^9.2.2",
|
|
"nodemon": "^2.0.4"
|
|
}
|
|
}
|