-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.47 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
{
"$schema": "https://www.schemastore.org/package.json",
"name": "@vortex/monorepo",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"packageManager": "[email protected]+sha512.0b7f8b98060031904c017e3a41eb187a16d40eeb829b95c4f8cb03681761fc4ab53dd219115b9b447f4dce1a05a214764461e7d3703392a9f32f9511ce8c86c8",
"engines": {
"node": "24.17.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.17.0",
"onFail": "download"
}
},
"volta": {
"node": "24.17.0",
"yarn": "1.22.19"
},
"scripts": {
"prepare": "husky",
"preinstall": "node ./scripts/create-env-file.mjs",
"start": "pnpm nx run @vortex/main:start",
"build": "pnpm nx run-many -t build lint typecheck && pnpm run assets",
"assets": "node ./scripts/dependency-report.mjs",
"package": "pnpm cross-env NODE_ENV=production pnpm run build && pnpm cross-env NODE_ENV=production pnpm nx run @vortex/main:package",
"package:nosign": "pnpm cross-env NODE_ENV=production pnpm run build && pnpm cross-env NODE_ENV=production pnpm nx run @vortex/main:package:nosign",
"typecheck": "pnpm nx run-many -t typecheck",
"lint": "pnpm nx run-many -t lint",
"lint:verbose": "pnpm nx run-many -t lint:verbose",
"test": "pnpm nx run-many -t test test:integration --exclude @vortex/e2e",
"api": "pnpm nx run vortex-api:build",
"format": "pnpm oxfmt",
"format:check": "pnpm oxfmt --check",
"format:staged": "git diff --name-only --cached | xargs --no-run-if-empty pnpm oxfmt",
"e2e": "pnpm nx run @vortex/e2e:e2e",
"e2e:headed": "pnpm nx run @vortex/e2e:e2e:headed",
"e2e:debug": "pnpm nx run @vortex/e2e:e2e:debug",
"e2e:report": "pnpm nx run @vortex/e2e:e2e:report",
"generate:query-types": "pnpm tsx scripts/generate-query-types.ts"
},
"lint-staged": {
"*": "pnpm oxfmt --no-error-on-unmatched-pattern"
},
"dependencies": {
"node": "catalog:"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "catalog:",
"@eslint/js": "catalog:",
"@microsoft/api-extractor": "catalog:",
"@stylistic/eslint-plugin": "catalog:",
"@tailwindcss/cli": "catalog:",
"@types/copyfiles": "catalog:",
"@types/minimist": "catalog:",
"@types/node": "catalog:",
"@types/webpack-node-externals": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"cli-table3": "catalog:",
"copyfiles": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-better-tailwindcss": "catalog:",
"eslint-plugin-perfectionist": "catalog:",
"fork-ts-checker-webpack-plugin": "catalog:",
"glob": "catalog:",
"globals": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"minimist": "catalog:",
"nx": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"p-limit": "catalog:",
"rimraf": "catalog:",
"rolldown": "catalog:",
"sass": "catalog:",
"source-map-loader": "catalog:",
"tailwindcss": "catalog:",
"terser-webpack-plugin": "catalog:",
"ts-loader": "catalog:",
"tsconfig-paths-webpack-plugin": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"webpack": "catalog:",
"webpack-cli": "catalog:",
"webpack-node-externals": "catalog:"
}
}