-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "baggers",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"scripts": {
"build": "FORCE_COLOR=1 turbo run build --color",
"dev": "FORCE_COLOR=1 turbo run dev --parallel --filter=ui --filter=api --filter=market-data-ws",
"dev:ui": "FORCE_COLOR=1 turbo run dev --parallel --filter=ui",
"dev:api": "FORCE_COLOR=1 turbo run dev --parallel --filter=api",
"lint": "FORCE_COLOR=1 turbo run lint",
"test": "FORCE_COLOR=1 turbo run test -- --passWithNoTests",
"type-check": "FORCE_COLOR=1 turbo run type-check",
"docker": "FORCE_COLOR=1 turbo run docker --continue --parallel",
"deploy": "FORCE_COLOR=1 turbo run deploy --continue --parallel",
"generate": "npm run generate --prefix tools/plop",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "patch-package"
},
"dependencies": {
"postinstall-postinstall": "^2.1.0",
"patch-package": "^6.5.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint-config-custom": "*",
"plop": "^3.1.1",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}