5bb26cc53a
Signed-off-by: mikesir87 <mikesir87@gmail.com> Imported from dockersamples/101-tutorial, removed other languages for now, and replaced PWD references with Docker Desktop.
32 lines
626 B
JSON
32 lines
626 B
JSON
{
|
|
"name": "101-app",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prettify": "prettier -l --write \"**/*.js\"",
|
|
"test": "jest",
|
|
"dev": "nodemon src/index.js"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"mysql": "^2.17.1",
|
|
"sqlite3": "^4.1.0",
|
|
"uuid": "^3.3.3",
|
|
"wait-port": "^0.2.2"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 4,
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"singleQuote": true
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^24.9.0",
|
|
"nodemon": "^1.19.2",
|
|
"prettier": "^1.18.2"
|
|
}
|
|
}
|