cryptpad/package.json

56 lines
1.9 KiB
JSON
Raw Normal View History

2014-10-31 15:42:58 +00:00
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
2022-12-21 14:29:00 +00:00
"version": "5.2.1",
2018-06-25 11:45:25 +00:00
"license": "AGPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/xwiki-labs/cryptpad.git"
2018-06-25 11:45:25 +00:00
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cryptpad"
},
"dependencies": {
"@mcrowe/minibloom": "^0.2.0",
"chainpad-crypto": "^0.2.5",
2021-04-26 09:47:38 +00:00
"chainpad-server": "^5.1.0",
2022-12-13 10:38:48 +00:00
"express": "~4.18.2",
2018-07-19 08:33:01 +00:00
"fs-extra": "^7.0.0",
2019-09-03 14:36:27 +00:00
"get-folder-size": "^2.0.1",
"netflux-websocket": "^0.1.20",
2019-08-27 15:08:24 +00:00
"nthen": "0.1.8",
2018-01-23 11:18:08 +00:00
"pull-stream": "^3.6.1",
"saferphore": "0.0.1",
2018-03-20 10:31:37 +00:00
"sortify": "^1.0.4",
2018-01-23 11:18:08 +00:00
"stream-to-pull-stream": "^1.7.2",
"tweetnacl": "~0.12.2",
"ulimit": "0.0.2",
2019-09-03 14:36:27 +00:00
"ws": "^3.3.1"
2016-02-12 09:33:09 +00:00
},
"devDependencies": {
2022-02-15 08:36:43 +00:00
"jshint": "^2.13.4",
"less": "3.7.1",
2020-12-29 11:38:48 +00:00
"lesshint": "6.3.7",
2017-12-15 15:09:30 +00:00
"selenium-webdriver": "^3.6.0"
2016-02-12 09:33:09 +00:00
},
"scripts": {
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",
"lint": "jshint --config .jshintrc --exclude-path .jshintignore . && ./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
2017-12-11 14:05:58 +00:00
"lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .",
"lint:server": "jshint --config .jshintrc lib",
2017-12-11 14:05:58 +00: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-05 16:01:21 +00:00
"test-rpc": "cd scripts/tests && node test-rpc",
"evict-inactive": "node scripts/evict-inactive.js",
"build": "node scripts/build.js"
}
2014-10-31 15:42:58 +00:00
}