trilium/package.json

130 lines
4.4 KiB
JSON
Raw Normal View History

{
"name": "trilium",
2018-11-20 00:16:22 +08:00
"productName": "Trilium Notes",
"description": "Trilium Notes",
2023-06-20 05:26:50 +08:00
"version": "0.60.4",
"license": "AGPL-3.0-only",
2018-01-31 21:03:25 +08:00
"main": "electron.js",
"bin": {
"trilium": "./src/www"
},
"repository": {
"type": "git",
"url": "https://github.com/zadam/trilium.git"
},
"scripts": {
2023-04-15 17:31:55 +08:00
"start-server": "cross-env TRILIUM_DATA_DIR=./data TRILIUM_ENV=dev TRILIUM_SYNC_SERVER_HOST=http://tsyncserver:4000 nodemon ./src/www",
"start-server-no-dir": "cross-env TRILIUM_ENV=dev TRILIUM_SYNC_SERVER_HOST=http://tsyncserver:4000 nodemon ./src/www",
"start-electron": "cross-env TRILIUM_DATA_DIR=./data TRILIUM_SYNC_SERVER_HOST=http://tsyncserver:4000 TRILIUM_ENV=dev electron --inspect=5858 .",
"start-electron-no-dir": "cross-env TRILIUM_ENV=dev TRILIUM_SYNC_SERVER_HOST=http://tsyncserver:4000 electron --inspect=5858 .",
"switch-server": "rm -rf ./node_modules/better-sqlite3 && npm install",
"switch-electron": "./node_modules/.bin/electron-rebuild",
"build-backend-docs": "rm -rf ./docs/backend_api && ./node_modules/.bin/jsdoc -c jsdoc-conf.json -d ./docs/backend_api src/becca/entities/*.js src/services/backend_script_api.js src/services/sql.js",
2023-02-17 23:30:14 +08:00
"build-frontend-docs": "rm -rf ./docs/frontend_api && ./node_modules/.bin/jsdoc -c jsdoc-conf.json -d ./docs/frontend_api src/public/app/entities/*.js src/public/app/services/frontend_script_api.js src/public/app/widgets/right_panel_widget.js",
"build-docs": "npm run build-backend-docs && npm run build-frontend-docs",
2023-04-15 17:39:26 +08:00
"webpack": "webpack -c webpack.config.js",
2022-10-22 21:58:15 +08:00
"test-jasmine": "jasmine",
"test-es6": "node -r esm spec-es6/attribute_parser.spec.js ",
2022-10-22 21:58:15 +08:00
"test": "npm run test-jasmine && npm run test-es6",
2023-04-11 00:16:49 +08:00
"postinstall": "rimraf ./node_modules/canvas",
"lint": "eslint . --cache",
2023-05-20 20:23:22 +08:00
"prepare": "husky install || echo 'Husky install failed, expected on flatpak build'"
},
"dependencies": {
2023-01-14 06:54:47 +08:00
"@braintree/sanitize-url": "6.0.2",
"@electron/remote": "2.0.10",
2023-06-02 04:51:34 +08:00
"@excalidraw/excalidraw": "0.14.2",
"archiver": "5.3.1",
"async-mutex": "0.4.0",
"axios": "1.4.0",
2023-05-29 06:19:54 +08:00
"better-sqlite3": "8.4.0",
2022-02-01 04:25:18 +08:00
"chokidar": "3.5.3",
"cls-hooked": "4.2.2",
"commonmark": "0.30.0",
"compression": "1.7.4",
2021-11-17 05:43:08 +08:00
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
2023-07-11 01:10:07 +08:00
"dayjs": "1.11.9",
2023-05-19 05:57:18 +08:00
"dayjs-plugin-utc": "0.1.2",
"debounce": "1.2.1",
2023-04-11 00:50:55 +08:00
"ejs": "3.1.9",
2020-12-24 04:03:01 +08:00
"electron-debug": "3.2.0",
2022-11-23 03:48:04 +08:00
"electron-dl": "3.5.0",
2019-03-28 04:04:25 +08:00
"electron-window-state": "5.0.3",
2023-04-21 06:19:17 +08:00
"escape-html": "1.0.3",
"express": "4.18.2",
2022-01-15 02:53:59 +08:00
"express-partial-content": "1.0.2",
2023-07-11 01:10:07 +08:00
"express-rate-limit": "6.7.1",
"express-session": "1.17.3",
2023-04-11 00:50:55 +08:00
"fs-extra": "11.1.1",
2023-05-07 21:23:46 +08:00
"helmet": "7.0.0",
"html": "1.0.0",
"html2plaintext": "2.1.4",
2023-05-29 06:19:54 +08:00
"http-proxy-agent": "7.0.0",
"https-proxy-agent": "7.0.0",
2019-05-09 02:19:31 +08:00
"image-type": "4.1.0",
"ini": "3.0.1",
2022-01-15 02:53:59 +08:00
"is-animated": "2.0.2",
"is-svg": "4.3.2",
2023-05-18 05:47:30 +08:00
"jimp": "0.22.8",
"joplin-turndown-plugin-gfm": "1.0.12",
2023-05-29 06:19:54 +08:00
"jsdom": "22.1.0",
2022-03-23 04:20:47 +08:00
"mime-types": "2.1.35",
2022-06-01 04:45:57 +08:00
"multer": "1.4.5-lts.1",
2023-06-14 05:39:42 +08:00
"node-abi": "3.45.0",
2022-01-15 02:53:59 +08:00
"normalize-strings": "1.1.1",
2023-02-10 19:29:07 +08:00
"open": "8.4.1",
2020-03-26 23:21:17 +08:00
"rand-token": "1.0.1",
2022-08-02 06:20:08 +08:00
"react": "17.0.2",
"react-dom": "17.0.2",
2022-01-15 02:53:59 +08:00
"request": "2.88.2",
2023-05-21 05:46:45 +08:00
"rimraf": "5.0.1",
"safe-compare": "1.1.4",
2019-08-27 02:34:50 +08:00
"sanitize-filename": "1.6.3",
2023-06-29 02:53:55 +08:00
"sanitize-html": "2.11.0",
2019-03-28 04:04:25 +08:00
"sax": "1.2.4",
2023-07-11 01:10:07 +08:00
"semver": "7.5.4",
"serve-favicon": "2.5.0",
"session-file-store": "1.5.0",
2022-01-15 02:53:59 +08:00
"stream-throttle": "0.1.3",
"striptags": "3.2.0",
2022-01-15 02:53:59 +08:00
"tmp": "0.2.1",
2023-04-11 00:50:55 +08:00
"turndown": "7.1.2",
"unescape": "1.0.1",
2023-04-11 00:50:55 +08:00
"ws": "8.13.0",
2023-05-27 05:11:37 +08:00
"xml2js": "0.6.0",
"yauzl": "2.10.0"
2017-10-21 11:43:20 +08:00
},
"devDependencies": {
2020-12-04 04:50:41 +08:00
"cross-env": "7.0.3",
2023-06-29 02:53:55 +08:00
"electron": "25.2.0",
"electron-builder": "24.4.0",
2022-11-08 04:26:13 +08:00
"electron-packager": "17.1.1",
"electron-rebuild": "3.2.9",
2023-07-11 01:10:07 +08:00
"eslint": "8.44.0",
2023-05-07 21:23:46 +08:00
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
2023-06-14 05:39:42 +08:00
"eslint-plugin-jsonc": "2.9.0",
2023-05-07 21:23:46 +08:00
"eslint-plugin-prettier": "4.2.1",
2020-07-25 05:14:31 +08:00
"esm": "3.2.25",
2023-04-25 03:22:34 +08:00
"husky": "8.0.3",
2023-05-18 05:47:30 +08:00
"jsonc-eslint-parser": "2.3.0",
2023-06-30 04:10:13 +08:00
"lint-staged": "13.2.3",
"jasmine": "5.0.2",
2023-04-11 00:50:55 +08:00
"jsdoc": "4.0.2",
2022-06-12 05:29:52 +08:00
"lorem-ipsum": "2.0.8",
2023-07-11 01:10:07 +08:00
"prettier": "3.0.0",
"nodemon": "3.0.1",
2021-07-20 19:29:11 +08:00
"rcedit": "3.0.1",
2023-06-30 04:10:13 +08:00
"webpack": "5.88.1",
2023-06-14 05:39:42 +08:00
"webpack-cli": "5.1.4"
},
"optionalDependencies": {
"electron-installer-debian": "3.1.0"
2023-04-11 00:16:49 +08:00
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}