-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.24 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
{
"name": "dashwise-monorepo",
"private": true,
"packageManager": "[email protected]",
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"typescript-eslint": "^8.44.1"
},
"scripts": {
"dev": "trap 'kill 0' SIGINT; bun run dev:backend & bun run dev:web & wait",
"dev:testenv": "./scripts/dev-testenv.sh",
"dev:backend": "bun --cwd apps/backend --hot src/index.ts",
"dev:web": "cd apps/web && bunx dotenv-cli -e ../../.env -- bunx vite --host 0.0.0.0 --port 5173",
"generate:openapi": "bun scripts/generate-openapi-json.ts && bunx openapi-typescript apps/backend/openapi.yaml -o packages/api-types/src/openapi.ts",
"generate:api-sdk": "cd apps/web && bunx openapi-ts -f openapi-ts.config.ts",
"build": "bun run --workspaces --if-present build",
"lint": "eslint . --quiet",
"lint:all": "eslint .",
"typecheck": "bun run --workspaces --if-present typecheck"
}
}