2022-01-23 16:02:58 -05:00
|
|
|
{
|
2022-11-02 11:24:45 -04:00
|
|
|
"name": "@hedgedoc/backend",
|
2023-10-23 16:46:19 -04:00
|
|
|
"version": "2.0.0-alpha.2",
|
2022-01-23 16:02:58 -05:00
|
|
|
"description": "Realtime collaborative markdown notes on all platforms.",
|
2020-07-21 15:24:56 -04:00
|
|
|
"author": "",
|
|
|
|
"private": true,
|
2022-01-23 16:02:58 -05:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"scripts": {
|
2021-09-06 12:04:14 -04:00
|
|
|
"build": "rimraf dist && nest build",
|
2021-02-16 04:28:55 -05:00
|
|
|
"format": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
|
|
"format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
2021-09-23 17:03:22 -04:00
|
|
|
"start": "rimraf dist && nest start",
|
|
|
|
"start:dev": "rimraf dist && nest start --watch",
|
|
|
|
"start:debug": "rimraf dist && nest start --debug --watch",
|
2020-07-21 15:24:56 -04:00
|
|
|
"start:prod": "node dist/main",
|
2022-01-23 16:51:21 -05:00
|
|
|
"lint": "eslint --max-warnings 0 \"{src,apps,libs,test}/**/*.ts\"",
|
2020-08-21 15:45:53 -04:00
|
|
|
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
2020-07-21 15:24:56 -04:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
2022-12-11 18:46:30 -05:00
|
|
|
"test:ci": "jest --coverage",
|
2020-07-21 15:24:56 -04:00
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
2021-12-07 10:19:44 -05:00
|
|
|
"test:e2e": "jest --config jest-e2e.json && rimraf test_uploads*",
|
2022-12-11 18:46:30 -05:00
|
|
|
"test:e2e:ci": "jest --config jest-e2e.json --coverage && rimraf test_uploads*",
|
2023-10-08 09:08:57 -04:00
|
|
|
"seed": "ts-node src/seed.ts",
|
|
|
|
"typeorm": "typeorm-ts-node-commonjs -d src/ormconfig.ts"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-19 14:48:15 -04:00
|
|
|
"@azure/storage-blob": "12.16.0",
|
2022-12-04 16:43:12 -05:00
|
|
|
"@hedgedoc/commons": "workspace:commons",
|
2023-07-30 05:40:51 -04:00
|
|
|
"@mrdrogdrog/optional": "1.2.1",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/common": "10.2.8",
|
2023-09-13 04:39:20 -04:00
|
|
|
"@nestjs/config": "3.1.1",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/core": "10.2.8",
|
|
|
|
"@nestjs/event-emitter": "2.0.3",
|
2023-09-11 06:43:49 -04:00
|
|
|
"@nestjs/passport": "10.0.2",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/platform-express": "10.2.8",
|
|
|
|
"@nestjs/platform-ws": "10.2.8",
|
2023-09-22 04:15:43 -04:00
|
|
|
"@nestjs/schedule": "3.0.4",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/swagger": "7.1.15",
|
2023-06-16 11:16:17 -04:00
|
|
|
"@nestjs/typeorm": "10.0.0",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/websockets": "10.2.8",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/bcrypt": "5.0.1",
|
2023-03-20 20:45:04 -04:00
|
|
|
"@types/cron": "2.0.1",
|
2023-05-24 15:11:35 -04:00
|
|
|
"@types/minio": "7.1.0",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/node-fetch": "2.6.7",
|
|
|
|
"@types/passport-http-bearer": "1.0.39",
|
2023-09-17 15:52:49 -04:00
|
|
|
"@zxcvbn-ts/core": "3.0.4",
|
|
|
|
"@zxcvbn-ts/language-common": "3.0.4",
|
|
|
|
"@zxcvbn-ts/language-en": "3.0.2",
|
2021-05-17 01:59:51 -04:00
|
|
|
"base32-encode": "1.2.0",
|
2023-08-16 00:02:54 -04:00
|
|
|
"bcrypt": "5.1.1",
|
2021-11-22 14:53:40 -05:00
|
|
|
"class-transformer": "0.5.1",
|
2022-12-10 14:51:59 -05:00
|
|
|
"class-validator": "0.14.0",
|
2022-07-09 08:59:04 -04:00
|
|
|
"cli-color": "2.0.3",
|
2022-07-31 13:46:13 -04:00
|
|
|
"connect-typeorm": "2.0.0",
|
2022-04-02 17:45:46 -04:00
|
|
|
"cookie": "0.5.0",
|
2022-07-22 17:05:38 -04:00
|
|
|
"diff": "5.1.0",
|
2022-05-14 01:28:30 -04:00
|
|
|
"express-session": "1.17.3",
|
2022-07-23 01:40:23 -04:00
|
|
|
"file-type": "16.5.4",
|
2023-06-11 06:56:27 -04:00
|
|
|
"htmlparser2": "9.0.0",
|
2023-10-04 16:02:01 -04:00
|
|
|
"joi": "17.11.0",
|
2022-06-25 07:33:50 -04:00
|
|
|
"ldapauth-fork": "5.0.5",
|
2023-09-26 15:53:56 -04:00
|
|
|
"markdown-it": "13.0.2",
|
2023-09-02 07:57:52 -04:00
|
|
|
"minio": "7.1.3",
|
2022-03-06 16:36:30 -05:00
|
|
|
"mysql": "2.18.1",
|
2023-08-26 05:03:50 -04:00
|
|
|
"node-fetch": "2.7.0",
|
2022-06-05 16:18:13 -04:00
|
|
|
"passport": "0.6.0",
|
2022-06-25 10:18:32 -04:00
|
|
|
"passport-custom": "1.1.1",
|
2021-01-25 16:52:35 -05:00
|
|
|
"passport-http-bearer": "1.0.1",
|
2021-08-08 15:44:54 -04:00
|
|
|
"passport-local": "1.0.0",
|
2023-08-16 22:20:58 -04:00
|
|
|
"pg": "8.11.3",
|
2023-02-25 07:53:36 -05:00
|
|
|
"raw-body": "2.5.2",
|
2021-01-05 17:12:43 -05:00
|
|
|
"reflect-metadata": "0.1.13",
|
2023-09-27 02:31:39 -04:00
|
|
|
"rimraf": "5.0.5",
|
2023-04-26 22:31:41 -04:00
|
|
|
"rxjs": "7.8.1",
|
2023-03-14 11:58:25 -04:00
|
|
|
"sqlite3": "5.1.6",
|
2023-06-20 17:34:56 -04:00
|
|
|
"typeorm": "0.3.17",
|
2023-09-19 14:46:25 -04:00
|
|
|
"ws": "8.14.2",
|
2023-09-19 04:20:46 -04:00
|
|
|
"yjs": "13.6.8"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-19 13:38:05 -04:00
|
|
|
"@darraghor/eslint-plugin-nestjs-typed": "4.3.3",
|
2023-11-12 15:59:19 -05:00
|
|
|
"@nestjs/cli": "10.2.1",
|
|
|
|
"@nestjs/schematics": "10.0.3",
|
|
|
|
"@nestjs/testing": "10.2.8",
|
2023-10-23 06:43:29 -04:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "4.2.1",
|
2023-09-17 14:58:35 -04:00
|
|
|
"@tsconfig/node18": "18.2.2",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/cli-color": "2.0.4",
|
|
|
|
"@types/cookie": "0.5.3",
|
|
|
|
"@types/cookie-signature": "1.1.1",
|
|
|
|
"@types/diff": "5.0.7",
|
|
|
|
"@types/express": "4.17.20",
|
|
|
|
"@types/express-session": "1.17.9",
|
2023-11-12 16:10:45 -05:00
|
|
|
"@types/jest": "29.5.8",
|
2023-10-23 13:28:42 -04:00
|
|
|
"@types/markdown-it": "13.0.5",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/mysql": "2.15.23",
|
2023-10-25 15:56:08 -04:00
|
|
|
"@types/node": "20.8.9",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/passport-local": "1.0.37",
|
|
|
|
"@types/pg": "8.10.7",
|
|
|
|
"@types/source-map-support": "0.5.9",
|
2023-11-12 16:10:45 -05:00
|
|
|
"@types/supertest": "2.0.16",
|
2023-10-19 13:37:50 -04:00
|
|
|
"@types/ws": "8.5.8",
|
2023-10-16 16:12:19 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.8.0",
|
|
|
|
"@typescript-eslint/parser": "6.8.0",
|
2023-10-27 02:30:02 -04:00
|
|
|
"eslint": "8.52.0",
|
2023-08-05 18:19:32 -04:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-10-27 02:30:02 -04:00
|
|
|
"eslint-plugin-import": "2.29.0",
|
|
|
|
"eslint-plugin-jest": "27.6.0",
|
2023-08-25 13:57:19 -04:00
|
|
|
"eslint-plugin-local-rules": "2.0.0",
|
2023-10-11 00:01:53 -04:00
|
|
|
"eslint-plugin-prettier": "5.0.1",
|
2022-04-22 22:28:15 -04:00
|
|
|
"http-proxy-middleware": "2.0.6",
|
2023-09-12 02:58:08 -04:00
|
|
|
"jest": "29.7.0",
|
2022-03-04 17:47:06 -05:00
|
|
|
"mocked-env": "1.3.5",
|
2023-08-29 10:30:49 -04:00
|
|
|
"prettier": "3.0.3",
|
2021-11-20 03:38:19 -05:00
|
|
|
"source-map-support": "0.5.21",
|
2022-12-10 04:20:44 -05:00
|
|
|
"supertest": "6.3.3",
|
2023-06-30 05:50:13 -04:00
|
|
|
"ts-jest": "29.1.1",
|
2022-06-21 10:16:40 -04:00
|
|
|
"ts-mockery": "1.2.0",
|
2023-10-29 14:38:44 -04:00
|
|
|
"ts-node": "11.0.0-beta.1",
|
2023-03-29 20:59:16 -04:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2023-08-26 03:21:46 -04:00
|
|
|
"typescript": "5.2.2"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
2020-07-21 15:24:56 -04:00
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"ts"
|
|
|
|
],
|
|
|
|
"rootDir": "src",
|
|
|
|
"testRegex": ".spec.ts$",
|
|
|
|
"transform": {
|
2022-09-11 10:40:23 -04:00
|
|
|
"^.+\\.(t|j)s$": [
|
|
|
|
"ts-jest",
|
|
|
|
{
|
|
|
|
"tsconfig": "test/tsconfig.json"
|
|
|
|
}
|
|
|
|
]
|
2020-07-21 15:24:56 -04:00
|
|
|
},
|
|
|
|
"coverageDirectory": "../coverage",
|
2021-04-29 13:09:15 -04:00
|
|
|
"testEnvironment": "node",
|
2022-05-01 13:13:53 -04:00
|
|
|
"reporters": [
|
|
|
|
"default",
|
|
|
|
"github-actions"
|
|
|
|
]
|
2021-11-11 13:53:30 -05:00
|
|
|
},
|
2023-10-29 17:34:03 -04:00
|
|
|
"packageManager": "yarn@4.0.1"
|
2022-01-23 16:02:58 -05:00
|
|
|
}
|