-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "mistral-hack",
"private": true,
"description": "AI Office — A visual AI agent orchestration platform with a pixel-art office UI. Manager agent decomposes tasks, spawns specialized workers, and streams their progress in real-time. Built with Mistral AI, Convex, and React.",
"license": "MIT",
"contributors": [
"Aykut Akgun",
"Leonard Roussard",
"Matteo Marchelli"
],
"repository": {
"type": "git",
"url": "https://github.com/impulse-studio/mistral-hack"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^4.1.13",
"typescript": "^5",
"convex": "^1.32.0",
"better-auth": "1.4.9",
"@convex-dev/better-auth": "^0.10.11",
"@convex-dev/agent": "^0.3.2"
}
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint -c .oxlintrc.json --fix .",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F @mistral-hack/backend dev",
"dev:setup": "turbo -F @mistral-hack/backend dev:setup"
},
"dependencies": {
"@mistral-hack/env": "workspace:*",
"convex": "^1.32.0",
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@mistral-hack/config": "workspace:*",
"@types/node": "^25.3.2",
"lefthook": "^2.1.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"turbo": "^2.6.3",
"typescript": "catalog:",
"web": "workspace:*"
},
"packageManager": "bun@1.3.8"
}