mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 22:58:52 +02:00

Here we need to ensure that there is no `node_modules` in `apps/desktop` since electron-forge will pick it up and use only that, meaning that all the hoisted dependencies available in the project root will not be accessible and it will error out. See https://github.com/pnpm/pnpm/issues/7880 for more information.
79 lines
2.4 KiB
JSON
79 lines
2.4 KiB
JSON
{
|
|
"name": "@triliumnext/source",
|
|
"version": "0.0.0",
|
|
"description": "Build your personal knowledge base with TriliumNext Notes",
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"scripts": {
|
|
"client:build": "nx build client",
|
|
"server:build": "nx build server",
|
|
"server:start": "nx run-many --target=serve --projects=client,server --parallel",
|
|
"server:start-prod": "pnpm server:build && cross-env TRILIUM_DATA_DIR=apps/server/data node apps/server/dist/main.js",
|
|
"electron:build": "nx build desktop"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.8.0",
|
|
"@nx/devkit": "20.8.0",
|
|
"@nx/esbuild": "20.8.0",
|
|
"@nx/eslint": "20.8.0",
|
|
"@nx/eslint-plugin": "20.8.0",
|
|
"@nx/express": "20.8.0",
|
|
"@nx/js": "20.8.0",
|
|
"@nx/node": "20.8.0",
|
|
"@nx/playwright": "20.8.0",
|
|
"@nx/vite": "20.8.0",
|
|
"@nx/web": "20.8.0",
|
|
"@nx/webpack": "20.8.0",
|
|
"@playwright/test": "^1.36.0",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
|
"@svgr/webpack": "^8.0.1",
|
|
"@swc-node/register": "~1.9.1",
|
|
"@swc/cli": "~0.6.0",
|
|
"@swc/core": "~1.5.7",
|
|
"@swc/helpers": "~0.5.11",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "18.16.9",
|
|
"@vitest/coverage-v8": "^3.0.5",
|
|
"@vitest/ui": "^3.0.0",
|
|
"cross-env": "7.0.3",
|
|
"esbuild": "^0.19.2",
|
|
"eslint": "^9.8.0",
|
|
"eslint-config-prettier": "^10.0.0",
|
|
"eslint-plugin-playwright": "^1.6.2",
|
|
"jiti": "2.4.2",
|
|
"jsdom": "~22.1.0",
|
|
"jsonc-eslint-parser": "^2.1.0",
|
|
"nx": "20.8.0",
|
|
"react-refresh": "^0.10.0",
|
|
"swc-loader": "0.1.15",
|
|
"tslib": "^2.3.0",
|
|
"typescript": "~5.7.2",
|
|
"typescript-eslint": "^8.19.0",
|
|
"vite": "^6.0.0",
|
|
"vitest": "^3.0.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"@triliumnext/server": "workspace:*"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"author": {
|
|
"name": "TriliumNext Notes Team",
|
|
"email": "contact@eliandoran.me",
|
|
"url": "https://github.com/TriliumNext/Notes"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/TriliumNext/Notes.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/TriliumNext/Notes/issues"
|
|
},
|
|
"homepage": "https://github.com/TriliumNext/Notes#readme",
|
|
"dependencies": {
|
|
"axios": "^1.6.0",
|
|
"express": "^4.21.2"
|
|
},
|
|
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
|
|
}
|