2022-01-23 16:02:58 -05:00
|
|
|
{
|
2020-07-25 14:24:59 -04:00
|
|
|
"name": "hedgedoc",
|
2020-07-21 15:24:56 -04:00
|
|
|
"version": "2.0.0",
|
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",
|
|
|
|
"test:cov": "jest --coverage",
|
|
|
|
"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*",
|
|
|
|
"test:e2e:cov": "jest --config jest-e2e.json --coverage && rimraf test_uploads*",
|
2021-04-29 05:53:59 -04:00
|
|
|
"seed": "ts-node src/seed.ts"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-09-13 14:02:31 -04:00
|
|
|
"@azure/storage-blob": "12.8.0",
|
2022-03-05 04:33:53 -05:00
|
|
|
"@nestjs/common": "8.4.0",
|
2022-02-19 06:50:24 -05:00
|
|
|
"@nestjs/config": "1.2.0",
|
2022-03-05 04:33:53 -05:00
|
|
|
"@nestjs/core": "8.4.0",
|
2022-02-19 06:50:24 -05:00
|
|
|
"@nestjs/passport": "8.2.1",
|
2022-03-05 04:33:53 -05:00
|
|
|
"@nestjs/platform-express": "8.4.0",
|
2021-11-16 09:01:19 -05:00
|
|
|
"@nestjs/schedule": "1.0.2",
|
2022-01-29 11:15:03 -05:00
|
|
|
"@nestjs/swagger": "5.2.0",
|
2022-01-23 14:33:55 -05:00
|
|
|
"@nestjs/typeorm": "8.0.3",
|
2021-05-09 15:42:04 -04:00
|
|
|
"@types/bcrypt": "5.0.0",
|
2021-07-15 14:37:28 -04:00
|
|
|
"@types/cron": "1.7.3",
|
2022-01-28 23:00:14 -05:00
|
|
|
"@types/minio": "7.0.12",
|
2022-02-19 14:44:32 -05:00
|
|
|
"@types/node-fetch": "2.6.1",
|
2021-07-15 14:37:28 -04:00
|
|
|
"@types/passport-http-bearer": "1.0.37",
|
2021-05-17 01:59:51 -04:00
|
|
|
"base32-encode": "1.2.0",
|
2021-02-26 00:34:10 -05:00
|
|
|
"bcrypt": "5.0.1",
|
2021-11-22 14:53:40 -05:00
|
|
|
"class-transformer": "0.5.1",
|
2021-11-20 10:05:49 -05:00
|
|
|
"class-validator": "0.13.2",
|
2021-10-15 19:08:26 -04:00
|
|
|
"cli-color": "2.0.1",
|
2021-01-05 17:12:43 -05:00
|
|
|
"connect-typeorm": "1.1.4",
|
2021-08-31 07:36:13 -04:00
|
|
|
"express-session": "1.17.2",
|
2021-08-03 11:38:24 -04:00
|
|
|
"file-type": "16.5.3",
|
2022-01-29 00:37:36 -05:00
|
|
|
"joi": "17.6.0",
|
2022-01-15 05:53:02 -05:00
|
|
|
"minio": "7.0.26",
|
2021-02-16 16:07:58 -05:00
|
|
|
"nest-router": "1.0.9",
|
2022-01-16 10:09:07 -05:00
|
|
|
"node-fetch": "2.6.7",
|
2021-12-18 06:09:08 -05:00
|
|
|
"passport": "0.5.2",
|
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",
|
2022-03-05 00:02:26 -05:00
|
|
|
"raw-body": "2.5.1",
|
2021-01-05 17:12:43 -05:00
|
|
|
"reflect-metadata": "0.1.13",
|
|
|
|
"rimraf": "3.0.2",
|
2022-02-12 05:47:33 -05:00
|
|
|
"rxjs": "7.5.4",
|
2021-02-16 14:08:39 -05:00
|
|
|
"sqlite3": "5.0.2",
|
2021-12-18 06:11:02 -05:00
|
|
|
"swagger-ui-express": "4.3.0",
|
2022-03-05 04:25:02 -05:00
|
|
|
"typeorm": "0.2.45"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-04 20:13:01 -05:00
|
|
|
"@nestjs/cli": "8.2.2",
|
2022-02-25 19:04:40 -05:00
|
|
|
"@nestjs/schematics": "8.0.7",
|
2022-03-05 04:33:53 -05:00
|
|
|
"@nestjs/testing": "8.4.0",
|
2022-02-04 21:24:22 -05:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "3.2.0",
|
2021-06-21 07:41:09 -04:00
|
|
|
"@tsconfig/node12": "1.0.9",
|
2021-12-24 21:49:05 -05:00
|
|
|
"@types/cli-color": "2.0.2",
|
2021-07-15 14:37:28 -04:00
|
|
|
"@types/express": "4.17.13",
|
2021-09-16 20:45:34 -04:00
|
|
|
"@types/express-session": "1.17.4",
|
2022-02-25 21:26:01 -05:00
|
|
|
"@types/jest": "27.4.1",
|
2022-02-25 23:45:31 -05:00
|
|
|
"@types/node": "16.11.26",
|
2021-09-16 20:45:34 -04:00
|
|
|
"@types/passport-local": "1.0.34",
|
2021-09-23 19:08:25 -04:00
|
|
|
"@types/source-map-support": "0.5.4",
|
2021-03-31 16:46:51 -04:00
|
|
|
"@types/supertest": "2.0.11",
|
2022-03-05 04:43:01 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.13.0",
|
|
|
|
"@typescript-eslint/parser": "5.13.0",
|
2022-02-26 07:45:27 -05:00
|
|
|
"eslint": "8.10.0",
|
2022-03-05 04:43:01 -05:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
2022-01-07 23:15:52 -05:00
|
|
|
"eslint-plugin-import": "2.25.4",
|
2022-02-18 23:57:22 -05:00
|
|
|
"eslint-plugin-jest": "26.1.1",
|
2021-09-06 12:01:05 -04:00
|
|
|
"eslint-plugin-local-rules": "1.1.0",
|
2021-09-04 13:19:26 -04:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2022-02-11 22:54:22 -05:00
|
|
|
"http-proxy-middleware": "2.0.3",
|
2022-02-12 01:05:20 -05:00
|
|
|
"jest": "27.5.1",
|
2021-12-04 10:05:10 -05:00
|
|
|
"prettier": "2.5.1",
|
2021-11-20 03:38:19 -05:00
|
|
|
"source-map-support": "0.5.21",
|
2022-01-23 14:32:03 -05:00
|
|
|
"supertest": "6.2.2",
|
2022-01-14 23:55:03 -05:00
|
|
|
"ts-jest": "27.1.3",
|
2022-03-06 11:31:37 -05:00
|
|
|
"ts-node": "10.7.0",
|
2022-03-05 03:29:50 -05:00
|
|
|
"tsconfig-paths": "3.13.0",
|
2022-03-05 04:33:06 -05:00
|
|
|
"typescript": "4.6.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": {
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
},
|
|
|
|
"coverageDirectory": "../coverage",
|
2021-04-29 13:09:15 -04:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
2021-10-14 13:55:55 -04:00
|
|
|
"tsconfig": "test/tsconfig.json"
|
2021-04-29 13:09:15 -04:00
|
|
|
}
|
|
|
|
}
|
2021-11-11 13:53:30 -05:00
|
|
|
},
|
2022-02-26 07:59:50 -05:00
|
|
|
"packageManager": "yarn@3.2.0"
|
2022-01-23 16:02:58 -05:00
|
|
|
}
|