-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.48 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.48 KB
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": "sagat-monorepo",
"type": "module",
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@tony.ganchev/eslint-plugin-header": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"eslint-plugin-header": "^3.1.1",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"vitest": "^4.0.18"
},
"private": true,
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint . --ext ts,tsx --max-warnings 0 && cd app && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix --max-warnings 0 && cd app && eslint . --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0",
"typecheck": "cd sdk && bun run typecheck",
"test": "cd api && bun test:e2e",
"dev:sdk": "cd sdk && bun run dev",
"dev:api": "cd api && bun run dev",
"dev:api:delayed": "sleep 2 && cd api && bun run dev",
"dev:app": "cd app && bun run dev",
"dev": "bun build:sdk && concurrently -n sdk,api,app -c cyan,green,yellow \"bun run dev:sdk\" \"bun run dev:api:delayed\" \"bun run dev:app\"",
"build:sdk": "cd sdk && bun run build",
"build:api": "cd api && bun run build",
"build:app": "cd app && bun run build",
"build": "bun run build:sdk && concurrently \"bun run build:api\" \"bun run build:app\""
},
"workspaces": [
"app",
"api",
"sdk"
]
}