-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.37 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
34
35
36
37
38
{
"name": "eco-monorepo",
"version": "0.0.1",
"author": "Dmytro Parzhytskyi <parzhitsky@gmail.com>",
"private": true,
"repository": "https://github.com/eco-repositories/eco-monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"play": "npm -w playground run dev",
"libs:init": "git submodule update --init --recursive",
"libs:install": "git submodule foreach \"npm ci\"",
"libs:build": "git submodule foreach \"npm run build -ws --if-present\"",
"dc:build-base": "docker build -t base:latest -f base.dockerfile .",
"dc:config": "docker compose --env-file docker-compose.env.local config",
"dc:resolve-env": "npm run dc:config --silent -- --format=json | jq --arg service \"${SERVICE_NAME?}\" -r '.services[$service].environment // {} | to_entries | .[] | \"\\(.key)=\\(.value)\"'",
"dc:up": "docker compose --env-file docker-compose.env.local up --build --detach --remove-orphans",
"dc:down": "docker compose --env-file docker-compose.env.local down",
"prestart": "npm run dc:build-base",
"start": "npm run dc:up",
"stop": "npm run dc:down"
},
"overrides": {
"@anatine/esbuild-decorators@0.2.19": {
"esbuild": "$esbuild"
},
"@types/node": "$@types/node",
"vite": {
"esbuild": "$esbuild"
}
},
"devDependencies": {
"@types/node": "^22",
"esbuild": "0.24.0",
"typescript": "5.6.3"
}
}