2022-01-23 21:02:58 +00:00
|
|
|
{
|
2020-07-25 18:24:59 +00:00
|
|
|
"name": "hedgedoc",
|
2020-07-21 19:24:56 +00:00
|
|
|
"version": "2.0.0",
|
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",
|
2020-08-21 19:45:53 +00:00
|
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
|
|
|
|
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
2020-07-21 19:24:56 +00:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
"test:cov": "jest --coverage",
|
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
2021-11-16 17:26:04 +00:00
|
|
|
"test:e2e": "jest --config jest-e2e.json",
|
|
|
|
"test:e2e:cov": "jest --config jest-e2e.json --coverage",
|
2021-04-29 09:53:59 +00:00
|
|
|
"seed": "ts-node src/seed.ts"
|
2022-01-23 21:02:58 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-09-13 18:02:31 +00:00
|
|
|
"@azure/storage-blob": "12.8.0",
|
2022-01-15 08:15:16 +00:00
|
|
|
"@nestjs/common": "8.2.5",
|
2022-01-08 04:32:35 +00:00
|
|
|
"@nestjs/config": "1.1.6",
|
2022-01-15 08:15:16 +00:00
|
|
|
"@nestjs/core": "8.2.5",
|
2022-01-16 18:17:20 +00:00
|
|
|
"@nestjs/passport": "8.1.0",
|
2022-01-15 08:15:16 +00:00
|
|
|
"@nestjs/platform-express": "8.2.5",
|
2021-11-16 14:01:19 +00:00
|
|
|
"@nestjs/schedule": "1.0.2",
|
2021-11-20 10:40:44 +00:00
|
|
|
"@nestjs/swagger": "5.1.5",
|
2021-08-03 10:17:58 +00:00
|
|
|
"@nestjs/typeorm": "8.0.2",
|
2021-05-09 19:42:04 +00:00
|
|
|
"@types/bcrypt": "5.0.0",
|
2021-07-15 18:37:28 +00:00
|
|
|
"@types/cron": "1.7.3",
|
2021-10-19 10:50:36 +00:00
|
|
|
"@types/minio": "7.0.11",
|
2021-07-26 20:18:11 +00:00
|
|
|
"@types/node-fetch": "2.5.12",
|
2021-07-15 18:37:28 +00:00
|
|
|
"@types/passport-http-bearer": "1.0.37",
|
2021-05-17 05:59:51 +00:00
|
|
|
"base32-encode": "1.2.0",
|
2021-02-26 05:34:10 +00:00
|
|
|
"bcrypt": "5.0.1",
|
2021-11-22 19:53:40 +00:00
|
|
|
"class-transformer": "0.5.1",
|
2021-11-20 15:05:49 +00:00
|
|
|
"class-validator": "0.13.2",
|
2021-10-15 23:08:26 +00:00
|
|
|
"cli-color": "2.0.1",
|
2021-01-05 22:12:43 +00:00
|
|
|
"connect-typeorm": "1.1.4",
|
2021-08-31 11:36:13 +00:00
|
|
|
"express-session": "1.17.2",
|
2021-08-03 15:38:24 +00:00
|
|
|
"file-type": "16.5.3",
|
2021-12-05 17:54:55 +00:00
|
|
|
"joi": "17.5.0",
|
2022-01-15 10:53:02 +00:00
|
|
|
"minio": "7.0.26",
|
2021-02-16 21:07:58 +00:00
|
|
|
"nest-router": "1.0.9",
|
2022-01-16 15:09:07 +00:00
|
|
|
"node-fetch": "2.6.7",
|
2021-12-18 11:09:08 +00:00
|
|
|
"passport": "0.5.2",
|
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",
|
2021-11-17 05:38:10 +00:00
|
|
|
"raw-body": "2.4.2",
|
2021-01-05 22:12:43 +00:00
|
|
|
"reflect-metadata": "0.1.13",
|
|
|
|
"rimraf": "3.0.2",
|
2022-01-15 12:18:41 +00:00
|
|
|
"rxjs": "7.5.2",
|
2021-02-16 19:08:39 +00:00
|
|
|
"sqlite3": "5.0.2",
|
2021-12-18 11:11:02 +00:00
|
|
|
"swagger-ui-express": "4.3.0",
|
2021-11-20 12:20:22 +00:00
|
|
|
"typeorm": "0.2.41"
|
2022-01-23 21:02:58 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-16 18:17:20 +00:00
|
|
|
"@nestjs/cli": "8.2.0",
|
2021-11-16 14:01:19 +00:00
|
|
|
"@nestjs/schematics": "8.0.5",
|
2022-01-15 08:15:16 +00:00
|
|
|
"@nestjs/testing": "8.2.5",
|
2021-11-10 14:53:47 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "3.1.1",
|
2021-06-21 11:41:09 +00:00
|
|
|
"@tsconfig/node12": "1.0.9",
|
2021-12-25 02:49:05 +00:00
|
|
|
"@types/cli-color": "2.0.2",
|
2021-07-15 18:37:28 +00:00
|
|
|
"@types/express": "4.17.13",
|
2021-09-17 00:45:34 +00:00
|
|
|
"@types/express-session": "1.17.4",
|
2022-01-02 00:14:36 +00:00
|
|
|
"@types/jest": "27.4.0",
|
2022-01-08 02:03:41 +00:00
|
|
|
"@types/node": "16.11.19",
|
2021-09-17 00:45:34 +00:00
|
|
|
"@types/passport-local": "1.0.34",
|
2021-09-23 23:08:25 +00:00
|
|
|
"@types/source-map-support": "0.5.4",
|
2021-03-31 20:46:51 +00:00
|
|
|
"@types/supertest": "2.0.11",
|
2022-01-16 18:17:01 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.9.1",
|
|
|
|
"@typescript-eslint/parser": "5.9.1",
|
|
|
|
"eslint": "8.7.0",
|
2021-04-24 15:33:20 +00:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
2022-01-08 04:15:52 +00:00
|
|
|
"eslint-plugin-import": "2.25.4",
|
2022-01-16 18:17:01 +00:00
|
|
|
"eslint-plugin-jest": "25.7.0",
|
2021-09-06 16:01:05 +00:00
|
|
|
"eslint-plugin-local-rules": "1.1.0",
|
2021-09-04 17:19:26 +00:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2021-10-13 23:02:00 +00:00
|
|
|
"http-proxy-middleware": "2.0.1",
|
2022-01-08 04:24:31 +00:00
|
|
|
"jest": "27.4.7",
|
2021-12-04 15:05:10 +00:00
|
|
|
"prettier": "2.5.1",
|
2021-11-20 08:38:19 +00:00
|
|
|
"source-map-support": "0.5.21",
|
2022-01-16 18:16:34 +00:00
|
|
|
"supertest": "6.2.1",
|
2022-01-15 04:55:03 +00:00
|
|
|
"ts-jest": "27.1.3",
|
2021-10-26 02:27:04 +00:00
|
|
|
"ts-node": "10.4.0",
|
2021-11-21 23:20:22 +00:00
|
|
|
"tsconfig-paths": "3.12.0",
|
2021-12-18 08:50:08 +00:00
|
|
|
"typescript": "4.5.4"
|
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": {
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
},
|
|
|
|
"coverageDirectory": "../coverage",
|
2021-04-29 17:09:15 +00:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
2021-10-14 17:55:55 +00:00
|
|
|
"tsconfig": "test/tsconfig.json"
|
2021-04-29 17:09:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-11 18:53:30 +00:00
|
|
|
},
|
2021-12-04 13:06:20 +00:00
|
|
|
"packageManager": "yarn@3.1.1"
|
2022-01-23 21:02:58 +00:00
|
|
|
}
|