forked from getprobo/probo
-
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) · 822 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 822 Bytes
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": "probo",
"description": "Probo monorepo containing applications and shared packages",
"engines": {
"node": "v24.11.1",
"npm": "11.8.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"check": "turbo run check",
"relay": "turbo run relay"
},
"devDependencies": {
"turbo": "^2.5.3"
},
"graphql": {
"schema": "./pkg/server/api/console/v1/schema.graphql"
},
"overrides": {
"form-data": "^4.0.4",
"minimatch": "^9.0.9",
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.9"
}
},
"license": "MIT",
"packageManager": "npm@11.8.0",
"volta": {
"node": "24.4.0"
},
"dependencies": {
"react-dom": "^19.2.1"
}
}