-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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": "taskflow",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:projects": "vitest run",
"test:projects:watch": "vitest --watch",
"view-report": "turbo run view-report",
"run:api": "turbo run dev --filter=api",
"run:web": "turbo run dev --filter=web",
"bd:deps": "turbo run build --filter=@repo/infra... --filter=@repo/shared... --filter=@repo/core..."
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.91.2",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "5.9.2",
"vitest": "^3.2.4",
"vitest-mock-extended": "^3.1.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@tanstack/query-core": "^5.90.5",
"@tanstack/react-query": "^5.90.5",
"express-session": "^1.18.2",
"keycloak-connect": "^26.1.1"
}
}