-
Notifications
You must be signed in to change notification settings - Fork 560
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.4 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.4 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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": ">=22"
},
"packageManager": "[email protected]",
"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"
}
}
},
"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",
"qs@<6.14.1": ">=6.14.1",
"react-router@>=7.0.0 <=7.11.0": ">=7.12.0",
"react-router@>=7.0.0 <7.12.0": ">=7.12.0",
"react-router@>=7.0.0 <7.9.6": ">=7.9.6",
"react-router@>=7.0.0 <=7.8.2": ">=7.9.0",
"devalue@>=5.1.0 <5.6.2": ">=5.6.2",
"devalue@>=5.3.0 <=5.6.1": ">=5.6.2",
"@sveltejs/kit@>=2.19.0 <=2.49.4": ">=2.49.5",
"undici@<6.24.0": ">=6.24.0",
"undici@>=7.0.0 <7.24.0": ">=7.24.0",
"diff@<4.0.4": ">=4.0.4",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"next@>=10.0.0 <15.5.10": ">=15.5.10",
"ajv@<8.18.0": ">=8.18.0",
"minimatch@<10.2.1": ">=10.2.1",
"svelte@<=5.51.4": ">=5.51.5",
"@sveltejs/kit@>=2.49.0 <=2.52.1": ">=2.52.2",
"devalue@<=5.6.2": ">=5.6.3",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3",
"svelte@>=5.53.0 <5.53.5": ">=5.53.5",
"svelte@<=5.53.4": ">=5.53.5",
"immutable@<4.3.8": ">=4.3.8",
"svgo@=4.0.0": ">=4.0.1",
"tar@<=7.5.10": ">=7.5.11",
"devalue@<5.6.4": ">=5.6.4",
"devalue@<=5.6.3": ">=5.6.4",
"next@>=16.0.1 <16.1.7": ">=16.1.7",
"next@>=16.0.0-beta.0 <16.1.7": ">=16.1.7",
"next@>=10.0.0 <16.1.7": ">=16.1.7"
}
}
}