forked from xwiki-contrib/cristal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.04 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.04 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
{
"private": true,
"name": "@xwiki/cristal-root",
"version": "0.0.0",
"license": "LGPL 2.1",
"author": "XWiki Org Community <contact@xwiki.org>",
"homepage": "https://cristal.xwiki.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/xwiki-contrib/cristal.git"
},
"bugs": {
"url": "https://jira.xwiki.org/projects/CRISTAL/"
},
"type": "module",
"scripts": {
"api-extractor:local": "nx run-many -t api-extractor:local",
"build": "nx run-many -t build --nxBail=true",
"clean": "nx run-many -t clean",
"dev": "nx build @xwiki/cristal-web && concurrently --kill-others 'pnpm run dev:cristal-web' 'pnpm run dev:cristal-realtime' 'pnpm run dev:cristal-authentication-server'",
"dev:cristal-authentication-server": "nx dev @xwiki/cristal-authentication-server",
"dev:cristal-realtime": "nx dev @xwiki/cristal-realtime",
"dev:cristal-web": "nx dev @xwiki/cristal-web",
"lint": "nx run-many -t lint",
"quickstart": "nx run @xwiki/cristal-web:quickstart",
"start": "nx run @xwiki/cristal-web:start",
"start:electron": "concurrently --kill-others 'pnpm run start:electron:ui' 'pnpm run dev:cristal-realtime' 'pnpm run dev:cristal-authentication-server'",
"start:electron:ui": "nx build @xwiki/cristal-electron-main && nx build @xwiki/cristal-electron-renderer && nx build @xwiki/cristal-electron-storage && nx run @xwiki/cristal-electron:start",
"test": "nx run-many -t test",
"typecheck": "nx run-many -t typecheck",
"version:set": "node scripts/update-versions.js"
},
"devDependencies": {
"@eslint/config-helpers": "catalog:",
"@eslint/eslintrc": "catalog:",
"@eslint/js": "catalog:",
"@microsoft/api-extractor": "catalog:",
"@microsoft/tsdoc": "catalog:",
"@microsoft/tsdoc-config": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vitest/coverage-v8": "catalog:",
"concurrently": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-import-resolver-typescript": "catalog:",
"eslint-plugin-headers": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-prettier": "catalog:",
"eslint-plugin-promise": "catalog:",
"eslint-plugin-tsdoc": "catalog:",
"eslint-plugin-vue": "catalog:",
"globals": "catalog:",
"happy-dom": "catalog:",
"jiti": "catalog:",
"nx": "catalog:",
"prettier": "catalog:",
"publint": "catalog:",
"rimraf": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vite-plugin-css-injected-by-js": "catalog:",
"vite-plugin-dts": "catalog:",
"vitest": "catalog:",
"vue-eslint-parser": "catalog:"
},
"engines": {
"node": "24.13.0"
},
"packageManager": "pnpm@10.28.1",
"pnpm": {
"ignoredBuiltDependencies": [
"electron-winstaller",
"esbuild",
"nx",
"unrs-resolver",
"vue-demi"
],
"onlyBuiltDependencies": [
"electron"
]
}
}