cryptpad/package.json

105 lines
3.2 KiB
JSON
Raw Permalink Normal View History

2014-10-31 15:42:58 +00:00
{
"name": "cryptpad",
"description": "a collaborative office suite that is end-to-end encrypted and open-source",
2024-07-25 12:54:11 +00:00
"version": "2024.6.1",
2018-06-25 11:45:25 +00:00
"license": "AGPL-3.0+",
"repository": {
"type": "git",
2023-05-16 12:54:39 +00:00
"url": "git+https://github.com/cryptpad/cryptpad.git"
2018-06-25 11:45:25 +00:00
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cryptpad"
},
"dependencies": {
"@mcrowe/minibloom": "^0.2.0",
2023-10-18 13:39:54 +00:00
"@node-saml/node-saml": "^4.0.5",
"alertify.js": "1.0.11",
"body-parser": "^1.20.2",
"bootstrap": "^4.0.0",
"bootstrap-tokenfield": "^0.12.0",
2023-05-02 15:47:46 +00:00
"chainpad": "^5.2.6",
"chainpad-crypto": "^0.2.5",
2024-06-24 14:25:39 +00:00
"chainpad-listmap": "^1.1.0",
"chainpad-netflux": "^1.2.0",
2024-03-13 15:33:50 +00:00
"chainpad-server": "^5.2.0",
2023-09-20 12:48:03 +00:00
"ckeditor": "npm:ckeditor4@~4.22.1",
"codemirror": "^5.19.0",
"components-font-awesome": "^4.6.3",
"cookie-parser": "^1.4.6",
"croppie": "^2.5.0",
"dragula": "3.7.2",
2024-03-21 13:36:42 +00:00
"drawio": "github:cryptpad/drawio-npm#npm-21.8.2+5",
2024-05-16 15:19:24 +00:00
"express": "~4.19.2",
"file-saver": "1.3.1",
"fs-extra": "^7.0.0",
"get-folder-size": "^2.0.1",
"html2canvas": "^1.4.0",
"http-proxy-middleware": "^2.0.6",
"hyper-json": "~1.4.0",
"jquery": "3.6.0",
"json.sortify": "~2.1.0",
"jsonwebtoken": "^9.0.0",
2023-05-02 12:59:17 +00:00
"jszip": "3.10.1",
"localforage": "^1.5.2",
2023-05-02 12:59:17 +00:00
"marked": "^4.3.0",
"mathjax": "3.0.5",
2024-06-24 14:25:39 +00:00
"netflux-websocket": "^1.2.0",
"notp": "^2.0.3",
"nthen": "0.1.8",
"open-sans-fontface": "^1.4.0",
"openid-client": "^5.4.2",
"pako": "^2.1.0",
"prompt-confirm": "^2.0.4",
"pull-stream": "^3.6.1",
"require-css": "0.1.10",
"requirejs": "2.3.5",
"requirejs-plugins": "^1.0.2",
"saferphore": "0.0.1",
"scrypt-async": "1.2.0",
"sortablejs": "^1.6.0",
"sortify": "^1.0.4",
"stream-to-pull-stream": "^1.7.2",
"thirty-two": "^1.0.2",
"tweetnacl": "~0.12.2",
"ulimit": "0.0.2",
"ws": "^8.17.1",
"x2js": "^3.4.4"
2016-02-12 09:33:09 +00:00
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-compat": "^4.2.0",
2024-06-24 16:03:44 +00:00
"stylelint": "^16.6.1",
"stylelint-config-standard-less": "^3.0.1"
2016-02-12 09:33:09 +00:00
},
2023-04-27 11:18:35 +00:00
"overrides": {
2023-05-02 15:47:46 +00:00
"minimist": "~1.2.3",
"minimatch": "~3.1.2",
"ws": "^8.17.1",
2023-05-02 14:03:02 +00:00
"jquery": "3.6.0"
2016-02-12 09:33:09 +00:00
},
"scripts": {
"install:components": "node scripts/copy-components.js",
2017-08-24 09:34:46 +00:00
"start": "node server.js",
"dev": "DEV=1 node server.js",
2017-12-11 10:13:06 +00:00
"fresh": "FRESH=1 node server.js",
2021-01-08 09:19:04 +00:00
"offline": "FRESH=1 OFFLINE=1 node server.js",
2021-02-22 11:58:21 +00:00
"offlinedev": "DEV=1 OFFLINE=1 node server.js",
2019-08-30 13:03:22 +00:00
"package": "PACKAGE=1 node server.js",
2024-06-24 16:03:44 +00:00
"lint": "eslint . && stylelint \"./customize.dist/src/less2/**/*.less\"",
"lint:js": "eslint .",
2024-06-24 16:03:44 +00:00
"lint:less": "stylelint \"./customize.dist/src/less2/**/*.less\"",
"lint:translations": "node ./scripts/translations/lint-translations.js",
"unused-translations": "node ./scripts/translations/unused-translations.js",
"test": "node scripts/TestSelenium.js",
2019-09-05 16:01:21 +00:00
"test-rpc": "cd scripts/tests && node test-rpc",
"evict-inactive": "node scripts/evict-inactive.js",
2022-12-20 15:56:41 +00:00
"build": "node scripts/build.js",
2022-12-21 14:59:22 +00:00
"clear": "node scripts/clear.js",
2022-12-21 15:02:07 +00:00
"installtoken": "node scripts/install.js"
},
2024-06-24 16:03:44 +00:00
"browserslist": [
"> 0.5%, last 2 versions, Firefox ESR, not dead, not op_mini all"
]
2014-10-31 15:42:58 +00:00
}