-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 913 Bytes
/
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
34
{
"name": "coffee-e-shop",
"version": "1.0.0",
"license": "MIT",
"main": "./dist/main.js",
"author": "async-devil",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/async-devil/coffee-e-shop.git"
},
"bugs": {
"url": "https://github.com/async-devil/coffee-e-shop/issues"
},
"keywords": [
"Typescript",
"Nestjs",
"AWS"
],
"workspaces": [
"apps/**"
],
"scripts": {
"build:dev": "sudo docker compose -f docker-compose.dev.yml --env-file ./.dev.env build",
"start:dev": "sudo docker compose -f docker-compose.dev.yml --env-file ./.dev.env up",
"build:prod": "sudo docker compose -f docker-compose.prod.yml --env-file ./.prod.env build",
"start:prod": "sudo docker compose -f docker-compose.prod.yml --env-file ./.prod.env up"
},
"jest": {
"projects": [
"<rootDir>/apps/**/jest.config.cjs"
]
}
}