trilium/package.json

90 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "trilium",
2018-11-20 00:16:22 +08:00
"productName": "Trilium Notes",
"description": "Trilium Notes",
2020-01-19 22:45:06 +08:00
"version": "0.40.1",
"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": {
"start-server": "TRILIUM_ENV=dev node ./src/www",
"start-electron": "TRILIUM_ENV=dev electron . --disable-gpu",
"build-backend-docs": "./node_modules/.bin/jsdoc -c jsdoc-conf.json -d ./docs/backend_api src/entities/*.js src/services/backend_script_api.js",
"build-frontend-docs": "./node_modules/.bin/jsdoc -c jsdoc-conf.json -d ./docs/frontend_api src/public/javascripts/entities/*.js src/public/javascripts/services/frontend_script_api.js",
2019-10-12 03:22:59 +08:00
"build-docs": "npm run build-backend-docs && npm run build-frontend-docs"
},
"dependencies": {
2019-10-01 01:35:00 +08:00
"async-mutex": "0.1.4",
2020-01-23 02:41:19 +08:00
"axios": "0.19.2",
2019-05-09 02:19:31 +08:00
"body-parser": "1.19.0",
"cls-hooked": "4.2.2",
2020-01-11 16:50:05 +08:00
"commonmark": "0.29.1",
2019-02-18 05:56:33 +08:00
"cookie-parser": "1.4.4",
"csurf": "1.11.0",
2020-01-11 16:50:05 +08:00
"dayjs": "1.8.19",
"debug": "4.1.1",
2019-11-21 04:35:18 +08:00
"ejs": "2.7.4",
2019-06-30 17:22:10 +08:00
"electron-debug": "3.0.1",
2019-12-21 01:04:05 +08:00
"electron-dl": "2.0.0",
2019-06-11 05:00:50 +08:00
"electron-find": "1.0.6",
2019-11-22 02:36:34 +08:00
"electron-spellchecker": "2.2.1",
2019-03-28 04:04:25 +08:00
"electron-window-state": "5.0.3",
2019-06-11 05:00:50 +08:00
"express": "4.17.1",
2019-10-16 01:16:44 +08:00
"express-session": "1.17.0",
2020-01-23 02:41:19 +08:00
"file-type": "13.1.2",
2019-06-30 17:22:10 +08:00
"fs-extra": "8.1.0",
2019-10-23 03:59:51 +08:00
"helmet": "3.21.2",
"html": "1.0.0",
2019-03-28 04:04:25 +08:00
"html2plaintext": "2.1.2",
2020-01-28 03:07:33 +08:00
"http-proxy-agent": "4.0.0",
2019-12-21 01:04:05 +08:00
"https-proxy-agent": "4.0.0",
2019-05-09 02:19:31 +08:00
"image-type": "4.1.0",
"imagemin": "7.0.1",
"imagemin-giflossy": "5.1.10",
"imagemin-mozjpeg": "8.0.0",
2019-06-11 05:00:50 +08:00
"imagemin-pngquant": "8.0.0",
"ini": "1.3.5",
2019-11-28 01:59:42 +08:00
"jimp": "0.9.3",
2020-01-11 16:50:05 +08:00
"mime-types": "2.1.26",
2019-07-19 02:20:38 +08:00
"multer": "1.4.2",
2019-11-28 01:59:42 +08:00
"node-abi": "2.13.0",
2019-10-17 01:42:42 +08:00
"open": "7.0.0",
2019-03-31 18:49:42 +08:00
"pngjs": "3.4.0",
"portscanner": "2.2.0",
"rand-token": "0.4.0",
"rcedit": "2.1.0",
2019-08-15 16:04:03 +08:00
"rimraf": "3.0.0",
2019-08-27 02:34:50 +08:00
"sanitize-filename": "1.6.3",
2019-03-28 04:04:25 +08:00
"sax": "1.2.4",
2019-12-21 01:04:05 +08:00
"semver": "7.1.1",
"serve-favicon": "2.5.0",
2019-07-19 02:20:38 +08:00
"session-file-store": "1.3.1",
2020-01-17 05:44:36 +08:00
"simple-node-logger": "18.12.24",
"sqlite": "3.0.3",
2019-12-06 04:25:36 +08:00
"sqlite3": "4.1.1",
"string-similarity": "4.0.1",
2019-06-11 05:00:50 +08:00
"tar-stream": "2.1.0",
2019-02-03 02:21:30 +08:00
"turndown": "5.0.3",
"turndown-plugin-gfm": "1.0.2",
"unescape": "1.0.1",
2019-12-21 01:04:05 +08:00
"ws": "7.2.1"
2017-10-21 11:43:20 +08:00
},
"devDependencies": {
"electron": "6.0.12",
2020-01-28 03:07:33 +08:00
"electron-builder": "22.3.2",
2020-01-16 02:40:17 +08:00
"electron-packager": "14.2.0",
2020-01-24 22:44:24 +08:00
"electron-rebuild": "1.9.0",
2019-10-11 05:24:25 +08:00
"jsdoc": "3.6.3",
2019-11-22 02:36:34 +08:00
"lorem-ipsum": "2.0.3"
},
"optionalDependencies": {
"electron-installer-debian": "2.0.1"
}
}