forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.5 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "nhost-root",
"private": true,
"version": "0.0.0",
"description": "Nhost Monorepo",
"author": "Nhost",
"license": "MIT",
"homepage": "https://nhost.io",
"repository": {
"type": "git",
"url": "git+https://github.com/nhost/nhost.git"
},
"bugs": {
"url": "https://github.com/nhost/nhost/issues"
},
"scripts": {
"build:dashboard": "turbo run build --filter=@nhost/dashboard",
"build:nhost-js": "turbo run build --filter=@nhost/nhost-js",
"audit-ci": "pnpm exec audit-ci --config ./audit-ci.jsonc",
"workspace:list": "pnpm ls --depth=-1 -r",
"clean:all": "pnpm clean && rm -rf ./{{packages,examples/**,templates/**}/*,docs,dashboard}/{.nhost,node_modules} node_modules",
"clean": "rm -rf ./{{packages,examples/**}/*,docs,dashboard}/{dist,umd,.next,.turbo,coverage}",
"clean:install": "pnpm clean:all && pnpm install",
"clean:build": "pnpm clean:install && pnpm build:nhost-js",
"dev:dashboard": "turbo run dev --filter=@nhost/dashboard"
},
"devDependencies": {
"audit-ci": "^6.6.1",
"turbo": "2.3.3",
"typescript": "5.8.3",
"vite": "^5.4.21",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^0.32.4"
},
"engines": {
"node": ">=20"
},
"eslintConfig": {
"extends": "./config/.eslintrc.js"
},
"packageManager": "pnpm@10.26.0",
"pnpm": {
"packageExtensions": {
"@uiw/codemirror-theme-bbedit": {
"dependencies": {
"@babel/runtime": "^7.0.0",
"@lezer/highlight": "^1.0.0"
}
},
"@uiw/codemirror-theme-github": {
"dependencies": {
"@babel/runtime": "^7.0.0",
"@lezer/highlight": "^1.0.0"
}
},
"@mintlify/link-rot@*": {
"dependencies": {
"react": "18.2.0"
}
},
"@mintlify/scraping@*": {
"dependencies": {
"openapi-types": "*"
}
}
},
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"vite@<=5.4.19": ">=5.4.20",
"vite@>=4.5.3 <5.0.0": ">=5.4.21",
"express@<4.19.2": ">=4.19.2",
"zod@<=3.22.2": ">=3.22.3",
"body-parser@<1.20.3": ">=1.20.3",
"serve-static@<1.16.0": ">=1.16.0",
"express@<4.20.0": ">=4.20.0",
"path-to-regexp@<0.1.10": ">=0.1.10",
"cookie@<0.7.0": ">=0.7.0",
"path-to-regexp@<0.1.12": ">=0.1.12",
"axios@>=1.0.0 <1.12.0": ">=1.12.0",
"send@<0.19.0": ">=0.19.0",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"tar@<6.2.1": "6.2.1",
"qs@<6.14.1": ">=6.14.1"
}
}
}