Initial commit
Signed-off-by: mikesir87 <mikesir87@gmail.com> Imported from dockersamples/101-tutorial, removed other languages for now, and replaced PWD references with Docker Desktop.
This commit is contained in:
31
app/package.json
Normal file
31
app/package.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user