-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.26 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "unraid-monorepo",
"private": true,
"version": "4.36.1",
"scripts": {
"audit": "node scripts/pnpm-audit.mjs",
"build": "pnpm -r build",
"build:watch": "pnpm -r --parallel --filter '!@unraid/ui' build:watch",
"codegen": "pnpm -r codegen",
"i18n:extract": "pnpm --filter @unraid/api i18n:extract && pnpm --filter @unraid/web i18n:extract",
"dev": "pnpm -r --parallel dev",
"unraid:deploy": "pnpm -r unraid:deploy",
"test": "pnpm -r test",
"test:watch": "pnpm -r --parallel test:watch",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"type-check": "pnpm -r type-check",
"check": "manypkg check",
"sync-webgui-repo": "node web/scripts/sync-webgui-repo.js",
"preinstall": "npx check-node-version --node 22 || echo '❌ Node.js 22 required. See readme.md Prerequisites section.'",
"postinstall": "simple-git-hooks",
"docker:build-and-run": "pnpm --filter @unraid/connect-plugin docker:build-and-run"
},
"pnpm": {
"overrides": {
"graphql": "16.11.0",
"@graphql-tools/utils": "10.9.1",
"ajv@<6.14.0": "6.15.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.20.0",
"axios": "1.18.1",
"body-parser": "2.3.0",
"brace-expansion@<1.1.16": "1.1.16",
"brace-expansion@>=3.0.0 <5.0.7": "5.0.7",
"defu": "6.1.7",
"esbuild": "0.28.1",
"fast-uri": "3.1.4",
"fast-xml-parser": "5.8.0",
"file-type": "22.0.1",
"flatted": "3.4.2",
"follow-redirects": "1.16.0",
"glob@>=11.0.0 <11.1.0": "11.1.0",
"handlebars": "4.7.9",
"hono": "4.12.31",
"immutable": "3.8.3",
"js-beautify": "1.15.4",
"js-cookie": "3.0.8",
"jiti": "2.7.0",
"js-yaml": "4.3.0",
"lodash": "4.18.1",
"minimatch@<3.1.5": "3.1.5",
"minimatch@>=9.0.0 <9.0.9": "9.0.9",
"nuxt": "4.4.8",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"postcss": "8.5.15",
"qs": "6.15.2",
"shell-quote": "1.8.4",
"protobufjs": "7.6.5",
"tar": "7.5.20",
"tmp": "0.2.7",
"uuid@>=8.0.0 <11.1.1": "11.1.1",
"uuid@>=11.0.0 <11.1.1": "11.1.1",
"vue-eslint-parser": "10.4.1",
"ws": "8.21.0",
"yaml": "2.9.0"
},
"peerDependencyRules": {
"allowAny": [
"vue"
]
},
"onlyBuiltDependencies": [
"@apollo/protobufjs",
"@nestjs/core",
"@parcel/watcher",
"@swc/core",
"@tailwindcss/oxide",
"@unraid/libvirt",
"core-js",
"cpu-features",
"es5-ext",
"esbuild",
"nestjs-pino",
"protobufjs",
"sharp",
"simple-git-hooks",
"ssh2",
"unrs-resolver",
"vue-demi",
"workerd"
]
},
"dependencies": {
"@manypkg/cli": "0.25.0",
"chalk": "5.6.0",
"diff": "8.0.4",
"ignore": "7.0.5"
},
"devDependencies": {
"lint-staged": "16.1.5",
"simple-git-hooks": "2.13.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"api/**/*.{js,ts}": [
"pnpm --filter api lint:fix"
],
"web/**/*.{js,ts,tsx,vue}": [
"pnpm --filter web lint:fix"
],
"unraid-ui/**/*.{js,ts,tsx,vue}": [
"pnpm --filter @unraid/ui lint:fix"
]
},
"packageManager": "pnpm@10.15.0"
}