You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"name": "node-docker-good-defaults",
|
|
|
|
"private": true,
|
|
|
|
"version": "2.0.0",
|
|
|
|
"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.16.3",
|
|
|
|
"knex": "^0.20.13",
|
|
|
|
"morgan": "^1.8.1",
|
|
|
|
"mysql2": "^2.1.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"chai": "^4.1.2",
|
|
|
|
"chai-http": "^4.0.0",
|
|
|
|
"cross-env": "^5.1.4",
|
|
|
|
"mocha": "^5.0.5",
|
|
|
|
"nodemon": "^1.17.5"
|
|
|
|
}
|
|
|
|
}
|