chore(script) removed docker from npm run

This commit is contained in:
2023-07-31 14:02:05 -04:00
parent 5067925c5f
commit ec1b81d826
3 changed files with 3 additions and 11 deletions

View File

@@ -8,12 +8,5 @@ services:
volumes:
- .:/app
restart: always
depends_on:
- mongodb
environment:
- NODE_ENV=production
mongodb:
image: mongo
restart: always
ports:
- '27017:27017'

View File

@@ -11,8 +11,7 @@
"start": "node dist/server.cjs",
"watch": "rollup --config rollup.config.mjs --watch",
"serve": "nodemon -q dist/server.jcs",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"docker": "docker-compose up --build"
"dev": "concurrently \"npm run watch\" \"npm run serve\""
},
"engines": {
"node": "18.x.x"

View File

@@ -16,7 +16,7 @@
"./src/server.ts"
],
"include": [
"src/**/*",
"src/types/index.ts"
"./src/**/*",
"./src/types/index.ts"
]
}