-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "express-typescript-mongo-docker",
"version": "0.1.0",
"description": "Express, Typescript, Mongo, Docker starter",
"main": "index.js",
"scripts": {
"start": "docker-compose up -d",
"build": "npm run cleanbuild && docker-compose up -d",
"cleanbuild": "docker-compose -f docker-compose.yml build --no-cache",
"cleanbuild:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml build --no-cache",
"start:out": "docker-compose up",
"build:out": "npm run cleanbuild && npm run start:out",
"start:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"build:dev": "npm run cleanbuild:dev && npm run start:dev",
"stop": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaidoj/express-typescript-mongo-docker-starter.git"
},
"keywords": [
"express",
"typescript",
"mongo",
"docker"
],
"author": "Kaido J <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaidoj/express-typescript-mongo-docker-starter/issues"
},
"homepage": "https://github.com/kaidoj/express-typescript-mongo-docker-starter#readme"
}