mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
chore(monorepo/client): set up dependencies
This commit is contained in:
parent
70466dd784
commit
fa48e5986b
@ -24,41 +24,11 @@
|
||||
"test": "vitest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@excalidraw/excalidraw": "0.18.0",
|
||||
"@fullcalendar/core": "6.1.17",
|
||||
"@fullcalendar/daygrid": "6.1.17",
|
||||
"@fullcalendar/interaction": "6.1.17",
|
||||
"@fullcalendar/list": "6.1.17",
|
||||
"@fullcalendar/multimonth": "6.1.17",
|
||||
"@fullcalendar/timegrid": "6.1.17",
|
||||
"@mermaid-js/layout-elk": "0.1.7",
|
||||
"@mind-elixir/node-menu": "1.0.5",
|
||||
"@types/jquery": "3.5.32",
|
||||
"@types/leaflet-gpx": "1.3.7",
|
||||
"@types/leaflet": "1.9.17",
|
||||
"autoprefixer": "10.4.21",
|
||||
"copy-webpack-plugin": "13.0.0",
|
||||
"i18next-http-backend": "3.0.2",
|
||||
"jquery-hotkeys": "0.2.2",
|
||||
"jquery.fancytree": "2.38.5",
|
||||
"jquery": "3.7.1",
|
||||
"jsplumb": "2.15.6",
|
||||
"knockout": "3.5.1",
|
||||
"leaflet-gpx": "2.1.2",
|
||||
"leaflet": "1.9.4",
|
||||
"mark.js": "8.11.1",
|
||||
"i18next": "25.0.0",
|
||||
"mermaid": "11.6.0",
|
||||
"mind-elixir": "4.5.1",
|
||||
"mini-css-extract-plugin": "2.9.2",
|
||||
"panzoom": "9.4.3",
|
||||
"react-dom": "18.3.1",
|
||||
"react": "18.3.1",
|
||||
"split.js": "1.6.5",
|
||||
"svg-pan-zoom": "3.6.2",
|
||||
"ts-loader": "9.5.2",
|
||||
"tsx": "4.19.3",
|
||||
"vanilla-js-wheel-zoom": "9.0.4",
|
||||
"webpack-cli": "6.0.1",
|
||||
"webpack": "5.99.6",
|
||||
"sass": "1.86.3",
|
||||
@ -66,18 +36,9 @@
|
||||
"script-loader": "0.7.2",
|
||||
"electron": "35.1.5",
|
||||
"debounce": "2.2.0",
|
||||
"draggabilly": "3.0.0",
|
||||
"vitest": "3.1.1",
|
||||
"@types/bootstrap": "5.2.10",
|
||||
"bootstrap": "5.3.5",
|
||||
"force-graph": "1.49.5",
|
||||
"@popperjs/core": "2.11.8",
|
||||
"@types/react": "18.3.20",
|
||||
"@types/react-dom": "18.3.6",
|
||||
"css-loader": "7.1.2",
|
||||
"postcss-loader": "8.1.1",
|
||||
"eslint-linter-browserify": "9.25.0",
|
||||
"@eslint/js": "9.25.0",
|
||||
"postcss-loader": "8.1.1",
|
||||
"happy-dom": "17.4.4"
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,48 @@
|
||||
{
|
||||
"name": "@triliumnext/client",
|
||||
"version": "0.0.1",
|
||||
"private": true
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@excalidraw/excalidraw": "0.18.0",
|
||||
"@fullcalendar/core": "6.1.17",
|
||||
"@fullcalendar/daygrid": "6.1.17",
|
||||
"@fullcalendar/interaction": "6.1.17",
|
||||
"@fullcalendar/list": "6.1.17",
|
||||
"@fullcalendar/multimonth": "6.1.17",
|
||||
"@fullcalendar/timegrid": "6.1.17",
|
||||
"@mermaid-js/layout-elk": "0.1.7",
|
||||
"@mind-elixir/node-menu": "1.0.5",
|
||||
"i18next-http-backend": "3.0.2",
|
||||
"jquery-hotkeys": "0.2.2",
|
||||
"jquery.fancytree": "2.38.5",
|
||||
"jquery": "3.7.1",
|
||||
"jsplumb": "2.15.6",
|
||||
"knockout": "3.5.1",
|
||||
"leaflet-gpx": "2.1.2",
|
||||
"leaflet": "1.9.4",
|
||||
"mark.js": "8.11.1",
|
||||
"i18next": "25.0.0",
|
||||
"mermaid": "11.6.0",
|
||||
"mind-elixir": "4.5.1",
|
||||
"panzoom": "9.4.3",
|
||||
"react-dom": "18.3.1",
|
||||
"react": "18.3.1",
|
||||
"split.js": "1.6.5",
|
||||
"svg-pan-zoom": "3.6.2",
|
||||
"vanilla-js-wheel-zoom": "9.0.4",
|
||||
"draggabilly": "3.0.0",
|
||||
"force-graph": "1.49.5",
|
||||
"@popperjs/core": "2.11.8",
|
||||
"eslint-linter-browserify": "9.25.0",
|
||||
"@eslint/js": "9.25.0",
|
||||
"bootstrap": "5.3.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jquery": "3.5.32",
|
||||
"@types/leaflet-gpx": "1.3.7",
|
||||
"@types/leaflet": "1.9.17",
|
||||
"@types/bootstrap": "5.2.10",
|
||||
"@types/react": "18.3.20",
|
||||
"@types/react-dom": "18.3.6"
|
||||
}
|
||||
}
|
||||
|
@ -13,8 +13,7 @@ module.exports = {
|
||||
new NxAppWebpackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
compiler: 'swc',
|
||||
main: './src/main.ts',
|
||||
index: './src/index.html',
|
||||
main: './src/desktop.ts',
|
||||
baseHref: '/',
|
||||
assets: ["./src/assets"],
|
||||
styles: ["./src/styles.css"],
|
||||
|
1441
package-lock.json
generated
1441
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user