cryptpad/package.json

69 lines
2.4 KiB
JSON
Raw Normal View History

2014-10-31 23:42:58 +08:00
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
2022-12-21 22:29:00 +08:00
"version": "5.2.1",
2018-06-25 19:45:25 +08:00
"license": "AGPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/xwiki-labs/cryptpad.git"
2018-06-25 19:45:25 +08:00
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cryptpad"
},
"dependencies": {
"@mcrowe/minibloom": "^0.2.0",
"chainpad-crypto": "^0.2.5",
2021-04-26 17:47:38 +08:00
"chainpad-server": "^5.1.0",
2022-12-13 18:38:48 +08:00
"express": "~4.18.2",
2018-07-19 16:33:01 +08:00
"fs-extra": "^7.0.0",
2019-09-03 22:36:27 +08:00
"get-folder-size": "^2.0.1",
"netflux-websocket": "^0.1.20",
2019-08-27 23:08:24 +08:00
"nthen": "0.1.8",
2022-12-21 22:59:22 +08:00
"prompt-confirm": "^2.0.4",
2018-01-23 19:18:08 +08:00
"pull-stream": "^3.6.1",
"saferphore": "0.0.1",
2018-03-20 18:31:37 +08:00
"sortify": "^1.0.4",
2018-01-23 19:18:08 +08:00
"stream-to-pull-stream": "^1.7.2",
"tweetnacl": "~0.12.2",
"ulimit": "0.0.2",
2019-09-03 22:36:27 +08:00
"ws": "^3.3.1"
2016-02-12 17:33:09 +08:00
},
"devDependencies": {
"ckeditor": "^4.12.1",
"codemirror": "^5.19.0",
"components-font-awesome": "^4.6.3",
"jquery": "3.6.0",
2022-02-15 16:36:43 +08:00
"jshint": "^2.13.4",
"json.sortify": "~2.1.0",
"less": "3.7.1",
2020-12-29 19:38:48 +08:00
"lesshint": "6.3.7",
"marked": "^1.1.0",
"rangy": "~1.3.0",
"requirejs": "2.3.5",
"requirejs-plugins": "^1.0.2",
2017-12-15 23:09:30 +08:00
"selenium-webdriver": "^3.6.0"
2016-02-12 17:33:09 +08:00
},
"scripts": {
"install:components": "node scripts/copy-components.js",
2017-08-24 17:34:46 +08:00
"start": "node server.js",
"dev": "npm run install:components && DEV=1 node server.js",
2017-12-11 18:13:06 +08:00
"fresh": "FRESH=1 node server.js",
2021-01-08 17:19:04 +08:00
"offline": "FRESH=1 OFFLINE=1 node server.js",
2021-02-22 19:58:21 +08:00
"offlinedev": "DEV=1 OFFLINE=1 node server.js",
2019-08-30 21:03:22 +08:00
"package": "PACKAGE=1 node server.js",
"lint": "jshint --config .jshintrc --exclude-path .jshintignore . && ./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
2017-12-11 22:05:58 +08:00
"lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .",
"lint:server": "jshint --config .jshintrc lib",
2017-12-11 22:05:58 +08:00
"lint:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
"lint:translations": "node ./scripts/translations/lint-translations.js",
"unused-translations": "node ./scripts/translations/unused-translations.js",
"test": "node scripts/TestSelenium.js",
2019-09-06 00:01:21 +08:00
"test-rpc": "cd scripts/tests && node test-rpc",
"evict-inactive": "node scripts/evict-inactive.js",
2022-12-20 23:56:41 +08:00
"build": "node scripts/build.js",
2022-12-21 22:59:22 +08:00
"clear": "node scripts/clear.js",
2022-12-21 23:02:07 +08:00
"installtoken": "node scripts/install.js"
}
2014-10-31 23:42:58 +08:00
}