2022-01-23 21:02:58 +00:00
|
|
|
{
|
2022-11-02 15:24:45 +00:00
|
|
|
"name": "@hedgedoc/backend",
|
2023-10-23 20:46:19 +00:00
|
|
|
"version": "2.0.0-alpha.2",
|
2022-01-23 21:02:58 +00:00
|
|
|
"description": "Realtime collaborative markdown notes on all platforms.",
|
2020-07-21 19:24:56 +00:00
|
|
|
"author": "",
|
|
|
|
"private": true,
|
2022-01-23 21:02:58 +00:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"scripts": {
|
2021-09-06 16:04:14 +00:00
|
|
|
"build": "rimraf dist && nest build",
|
2021-02-16 09:28:55 +00:00
|
|
|
"format": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
|
|
"format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
2021-09-23 21:03:22 +00:00
|
|
|
"start": "rimraf dist && nest start",
|
|
|
|
"start:dev": "rimraf dist && nest start --watch",
|
|
|
|
"start:debug": "rimraf dist && nest start --debug --watch",
|
2020-07-21 19:24:56 +00:00
|
|
|
"start:prod": "node dist/main",
|
2022-01-23 21:51:21 +00:00
|
|
|
"lint": "eslint --max-warnings 0 \"{src,apps,libs,test}/**/*.ts\"",
|
2020-08-21 19:45:53 +00:00
|
|
|
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
2020-07-21 19:24:56 +00:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
2022-12-11 23:46:30 +00:00
|
|
|
"test:ci": "jest --coverage",
|
2020-07-21 19:24:56 +00:00
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
2021-12-07 15:19:44 +00:00
|
|
|
"test:e2e": "jest --config jest-e2e.json && rimraf test_uploads*",
|
2022-12-11 23:46:30 +00:00
|
|
|
"test:e2e:ci": "jest --config jest-e2e.json --coverage && rimraf test_uploads*",
|
2023-10-08 13:08:57 +00:00
|
|
|
"seed": "ts-node src/seed.ts",
|
|
|
|
"typeorm": "typeorm-ts-node-commonjs -d src/ormconfig.ts"
|
2022-01-23 21:02:58 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-12-07 20:08:53 +00:00
|
|
|
"@azure/storage-blob": "12.17.0",
|
2022-12-04 21:43:12 +00:00
|
|
|
"@hedgedoc/commons": "workspace:commons",
|
2023-07-30 09:40:51 +00:00
|
|
|
"@mrdrogdrog/optional": "1.2.1",
|
2024-02-12 11:47:53 +00:00
|
|
|
"@nestjs/common": "10.3.3",
|
2024-02-10 15:33:41 +00:00
|
|
|
"@nestjs/config": "3.2.0",
|
2024-02-12 11:47:53 +00:00
|
|
|
"@nestjs/core": "10.3.3",
|
2024-02-10 15:33:10 +00:00
|
|
|
"@nestjs/event-emitter": "2.0.4",
|
2023-12-07 19:13:47 +00:00
|
|
|
"@nestjs/passport": "10.0.3",
|
2024-02-12 11:47:53 +00:00
|
|
|
"@nestjs/platform-express": "10.3.3",
|
|
|
|
"@nestjs/platform-ws": "10.3.3",
|
2024-02-12 13:14:32 +00:00
|
|
|
"@nestjs/schedule": "4.0.1",
|
2024-02-10 15:33:41 +00:00
|
|
|
"@nestjs/swagger": "7.3.0",
|
2024-02-10 15:33:10 +00:00
|
|
|
"@nestjs/typeorm": "10.0.2",
|
2024-02-12 11:47:53 +00:00
|
|
|
"@nestjs/websockets": "10.3.3",
|
2024-08-28 21:39:23 +00:00
|
|
|
"@node-rs/argon2": "1.8.3",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/bcrypt": "5.0.2",
|
2023-03-21 00:45:04 +00:00
|
|
|
"@types/cron": "2.0.1",
|
2023-05-24 19:11:35 +00:00
|
|
|
"@types/minio": "7.1.0",
|
2024-01-22 10:43:43 +00:00
|
|
|
"@types/node-fetch": "2.6.11",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/passport-http-bearer": "1.0.41",
|
2023-09-17 19:52:49 +00:00
|
|
|
"@zxcvbn-ts/core": "3.0.4",
|
|
|
|
"@zxcvbn-ts/language-common": "3.0.4",
|
|
|
|
"@zxcvbn-ts/language-en": "3.0.2",
|
2021-05-17 05:59:51 +00:00
|
|
|
"base32-encode": "1.2.0",
|
2021-11-22 19:53:40 +00:00
|
|
|
"class-transformer": "0.5.1",
|
2024-01-25 04:01:57 +00:00
|
|
|
"class-validator": "0.14.1",
|
2022-07-09 12:59:04 +00:00
|
|
|
"cli-color": "2.0.3",
|
2022-07-31 17:46:13 +00:00
|
|
|
"connect-typeorm": "2.0.0",
|
2023-12-07 20:10:30 +00:00
|
|
|
"cookie": "0.6.0",
|
2022-07-22 21:05:38 +00:00
|
|
|
"diff": "5.1.0",
|
2024-02-10 15:27:56 +00:00
|
|
|
"express-session": "1.18.0",
|
2022-07-23 05:40:23 +00:00
|
|
|
"file-type": "16.5.4",
|
2024-02-10 15:28:26 +00:00
|
|
|
"htmlparser2": "9.1.0",
|
2024-02-10 15:28:42 +00:00
|
|
|
"joi": "17.12.1",
|
2022-06-25 11:33:50 +00:00
|
|
|
"ldapauth-fork": "5.0.5",
|
2023-09-26 19:53:56 +00:00
|
|
|
"markdown-it": "13.0.2",
|
2023-09-02 11:57:52 +00:00
|
|
|
"minio": "7.1.3",
|
2022-03-06 21:36:30 +00:00
|
|
|
"mysql": "2.18.1",
|
2023-08-26 09:03:50 +00:00
|
|
|
"node-fetch": "2.7.0",
|
2024-01-18 20:05:02 +00:00
|
|
|
"passport": "0.7.0",
|
2022-06-25 14:18:32 +00:00
|
|
|
"passport-custom": "1.1.1",
|
2021-01-25 21:52:35 +00:00
|
|
|
"passport-http-bearer": "1.0.1",
|
2021-08-08 19:44:54 +00:00
|
|
|
"passport-local": "1.0.0",
|
2023-08-17 02:20:58 +00:00
|
|
|
"pg": "8.11.3",
|
2023-02-25 12:53:36 +00:00
|
|
|
"raw-body": "2.5.2",
|
2024-02-10 15:35:06 +00:00
|
|
|
"reflect-metadata": "0.2.1",
|
2023-09-27 06:31:39 +00:00
|
|
|
"rimraf": "5.0.5",
|
2023-04-27 02:31:41 +00:00
|
|
|
"rxjs": "7.8.1",
|
2024-01-28 16:45:56 +00:00
|
|
|
"sqlite3": "5.1.7",
|
2024-02-10 15:32:55 +00:00
|
|
|
"typeorm": "0.3.20",
|
2024-02-10 15:35:45 +00:00
|
|
|
"ws": "8.16.0",
|
2024-02-10 15:32:21 +00:00
|
|
|
"yjs": "13.6.12"
|
2022-01-23 21:02:58 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-28 22:25:52 +00:00
|
|
|
"@darraghor/eslint-plugin-nestjs-typed": "4.6.1",
|
2024-02-10 15:33:41 +00:00
|
|
|
"@nestjs/cli": "10.3.2",
|
|
|
|
"@nestjs/schematics": "10.1.1",
|
2024-02-12 11:47:53 +00:00
|
|
|
"@nestjs/testing": "10.3.3",
|
2023-12-07 18:56:58 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "4.3.0",
|
2023-09-17 18:58:35 +00:00
|
|
|
"@tsconfig/node18": "18.2.2",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/cli-color": "2.0.6",
|
2023-12-07 07:49:19 +00:00
|
|
|
"@types/cookie": "0.6.0",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/cookie-signature": "1.1.2",
|
|
|
|
"@types/diff": "5.0.9",
|
|
|
|
"@types/express": "4.17.21",
|
|
|
|
"@types/express-session": "1.17.10",
|
2024-02-10 15:31:44 +00:00
|
|
|
"@types/jest": "29.5.12",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/markdown-it": "13.0.7",
|
2024-01-22 10:43:43 +00:00
|
|
|
"@types/mysql": "2.15.25",
|
2024-02-15 12:19:01 +00:00
|
|
|
"@types/node": "20.11.18",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/passport-local": "1.0.38",
|
2024-01-28 13:23:07 +00:00
|
|
|
"@types/pg": "8.11.0",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/source-map-support": "0.5.10",
|
2023-11-12 21:10:45 +00:00
|
|
|
"@types/supertest": "2.0.16",
|
2023-12-07 17:49:37 +00:00
|
|
|
"@types/ws": "8.5.10",
|
2024-02-10 15:26:48 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
|
|
"@typescript-eslint/parser": "6.21.0",
|
2024-02-23 22:05:04 +00:00
|
|
|
"eslint": "8.57.0",
|
2023-12-07 19:56:11 +00:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2024-01-25 01:39:19 +00:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2024-02-23 22:05:04 +00:00
|
|
|
"eslint-plugin-jest": "27.9.0",
|
2023-11-30 21:02:11 +00:00
|
|
|
"eslint-plugin-local-rules": "2.0.1",
|
2024-02-10 15:25:38 +00:00
|
|
|
"eslint-plugin-prettier": "5.1.3",
|
2022-04-23 02:28:15 +00:00
|
|
|
"http-proxy-middleware": "2.0.6",
|
2023-09-12 06:58:08 +00:00
|
|
|
"jest": "29.7.0",
|
2022-03-04 22:47:06 +00:00
|
|
|
"mocked-env": "1.3.5",
|
2024-02-10 15:25:38 +00:00
|
|
|
"prettier": "3.2.5",
|
2021-11-20 08:38:19 +00:00
|
|
|
"source-map-support": "0.5.21",
|
2024-01-25 04:01:00 +00:00
|
|
|
"supertest": "6.3.4",
|
|
|
|
"ts-jest": "29.1.2",
|
2022-06-21 14:16:40 +00:00
|
|
|
"ts-mockery": "1.2.0",
|
2023-10-29 18:38:44 +00:00
|
|
|
"ts-node": "11.0.0-beta.1",
|
2023-03-30 00:59:16 +00:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2023-12-07 19:28:24 +00:00
|
|
|
"typescript": "5.3.3"
|
2022-01-23 21:02:58 +00:00
|
|
|
},
|
2020-07-21 19:24:56 +00:00
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"ts"
|
|
|
|
],
|
|
|
|
"rootDir": "src",
|
|
|
|
"testRegex": ".spec.ts$",
|
|
|
|
"transform": {
|
2022-09-11 14:40:23 +00:00
|
|
|
"^.+\\.(t|j)s$": [
|
|
|
|
"ts-jest",
|
|
|
|
{
|
|
|
|
"tsconfig": "test/tsconfig.json"
|
|
|
|
}
|
|
|
|
]
|
2020-07-21 19:24:56 +00:00
|
|
|
},
|
|
|
|
"coverageDirectory": "../coverage",
|
2021-04-29 17:09:15 +00:00
|
|
|
"testEnvironment": "node",
|
2022-05-01 17:13:53 +00:00
|
|
|
"reporters": [
|
|
|
|
"default",
|
|
|
|
"github-actions"
|
|
|
|
]
|
2021-11-11 18:53:30 +00:00
|
|
|
},
|
2024-02-10 15:34:12 +00:00
|
|
|
"packageManager": "yarn@4.1.0"
|
2022-01-23 21:02:58 +00:00
|
|
|
}
|