-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
39
40
{
"name": "@mychat/monorepo",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"apps/*",
"tooling/*",
"packages/*"
],
"scripts": {
"export:docker": "docker build -f docker/Dockerfile -t mychat:local .",
"compose": "docker compose -f compose.yml",
"compose:test": "docker compose -f compose.yml -f compose.test.yml",
"lint": "turbo lint",
"tsc": "turbo tsc",
"export": "turbo export",
"build": "turbo build --cache-dir=.turbo",
"migration:run": "turbo migration:run",
"dev": "TURBO_EXPERIMENTAL_UI=true turbo dev",
"start": "turbo start",
"start:prod": "turbo start:prod",
"compose:prod": "docker compose -f production.yml",
"clean": "turbo clean && yarn cache clean && rm -rf node_modules yarn.lock ./logs",
"tree": "tree -L 4 . --gitignore --dirsfirst --noreport --charset utf-8"
},
"keywords": [],
"author": "",
"license": "MIT",
"resolutions": {
"eslint": "9.1.1",
"markdown-it": "14.0.0",
"react-native-svg": "15.2.0"
},
"devDependencies": {
"@mychat/tsconfig": "workspace:*",
"turbo": "^1.13.3"
},
"packageManager": "yarn@4.2.2"
}