2015-05-04 03:53:29 -04:00
|
|
|
{
|
2020-07-25 14:24:59 -04:00
|
|
|
"name": "hedgedoc",
|
2020-07-21 15:24:56 -04:00
|
|
|
"version": "2.0.0",
|
2015-05-04 03:53:29 -04:00
|
|
|
"description": "Realtime collaborative markdown notes on all platforms.",
|
2020-07-21 15:24:56 -04:00
|
|
|
"author": "",
|
|
|
|
"private": true,
|
2017-10-12 13:56:13 -04:00
|
|
|
"license": "AGPL-3.0",
|
2016-10-07 11:05:23 -04:00
|
|
|
"scripts": {
|
2020-07-21 15:24:56 -04:00
|
|
|
"prebuild": "rimraf dist",
|
|
|
|
"build": "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\"",
|
2020-07-21 15:24:56 -04:00
|
|
|
"start": "nest start",
|
|
|
|
"start:dev": "nest start --watch",
|
|
|
|
"start:debug": "nest start --debug --watch",
|
|
|
|
"start:prod": "node dist/main",
|
2020-08-21 15:45:53 -04:00
|
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
|
|
|
|
"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-03-31 17:23:15 -04:00
|
|
|
"test:e2e": "jest --config jest-e2e.json --runInBand",
|
2021-04-29 05:53:59 -04:00
|
|
|
"test:e2e:cov": "jest --config jest-e2e.json --coverage --runInBand",
|
|
|
|
"seed": "ts-node src/seed.ts"
|
2016-10-07 11:05:23 -04:00
|
|
|
},
|
2015-05-04 03:53:29 -04:00
|
|
|
"dependencies": {
|
2021-03-14 13:49:35 -04:00
|
|
|
"@azure/storage-blob": "12.5.0",
|
2021-03-25 07:21:07 -04:00
|
|
|
"@nestjs/common": "7.6.15",
|
2021-02-12 16:55:30 -05:00
|
|
|
"@nestjs/config": "0.6.3",
|
2021-03-25 07:21:07 -04:00
|
|
|
"@nestjs/core": "7.6.15",
|
2021-01-25 16:52:35 -05:00
|
|
|
"@nestjs/passport": "7.1.5",
|
2021-03-25 07:21:07 -04:00
|
|
|
"@nestjs/platform-express": "7.6.15",
|
2021-03-14 13:42:57 -04:00
|
|
|
"@nestjs/schedule": "0.4.3",
|
2021-03-19 10:43:34 -04:00
|
|
|
"@nestjs/swagger": "4.8.0",
|
2021-01-06 14:43:16 -05:00
|
|
|
"@nestjs/typeorm": "7.1.5",
|
2021-04-09 18:42:57 -04:00
|
|
|
"@types/bcrypt": "3.0.1",
|
2021-01-25 16:52:35 -05:00
|
|
|
"@types/cron": "1.7.2",
|
2021-02-27 17:12:19 -05:00
|
|
|
"@types/minio": "7.0.7",
|
2021-04-12 10:59:30 -04:00
|
|
|
"@types/node-fetch": "2.5.10",
|
2021-01-25 16:52:35 -05:00
|
|
|
"@types/passport-http-bearer": "1.0.36",
|
2021-02-26 00:34:10 -05:00
|
|
|
"bcrypt": "5.0.1",
|
2021-02-16 14:14:45 -05:00
|
|
|
"class-transformer": "0.4.0",
|
2021-01-14 00:45:22 -05:00
|
|
|
"class-validator": "0.13.1",
|
2021-01-06 14:54:47 -05:00
|
|
|
"cli-color": "2.0.0",
|
2021-01-05 17:12:43 -05:00
|
|
|
"connect-typeorm": "1.1.4",
|
2021-04-27 16:32:19 -04:00
|
|
|
"eslint-plugin-jest": "24.3.6",
|
2021-05-05 16:26:59 -04:00
|
|
|
"file-type": "16.4.0",
|
2021-02-12 17:11:05 -05:00
|
|
|
"joi": "17.4.0",
|
2021-02-27 17:12:19 -05:00
|
|
|
"minio": "7.0.18",
|
2021-02-16 16:07:58 -05:00
|
|
|
"nest-router": "1.0.9",
|
2021-02-27 17:12:19 -05:00
|
|
|
"node-fetch": "2.6.1",
|
2021-01-25 16:52:35 -05:00
|
|
|
"passport": "0.4.1",
|
|
|
|
"passport-http-bearer": "1.0.1",
|
2021-01-05 17:12:43 -05:00
|
|
|
"raw-body": "2.4.1",
|
|
|
|
"reflect-metadata": "0.1.13",
|
|
|
|
"rimraf": "3.0.2",
|
2021-04-30 14:53:59 -04:00
|
|
|
"rxjs": "7.0.0",
|
2021-01-05 17:12:43 -05:00
|
|
|
"shortid": "2.2.16",
|
2021-02-16 14:08:39 -05:00
|
|
|
"sqlite3": "5.0.2",
|
2021-01-06 15:25:55 -05:00
|
|
|
"swagger-ui-express": "4.1.6",
|
2021-03-31 16:47:05 -04:00
|
|
|
"typeorm": "0.2.32"
|
2016-10-07 11:05:23 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-03-26 07:24:58 -04:00
|
|
|
"@nestjs/cli": "7.6.0",
|
|
|
|
"@nestjs/schematics": "7.3.1",
|
2021-03-25 07:21:07 -04:00
|
|
|
"@nestjs/testing": "7.6.15",
|
2021-04-30 14:53:44 -04:00
|
|
|
"@tsconfig/node12": "1.0.7",
|
2021-02-27 17:12:19 -05:00
|
|
|
"@types/cli-color": "2.0.0",
|
2021-01-12 17:29:20 -05:00
|
|
|
"@types/express": "4.17.11",
|
2021-04-27 10:46:56 -04:00
|
|
|
"@types/jest": "26.0.23",
|
|
|
|
"@types/node": "13.13.51",
|
2021-02-27 17:12:19 -05:00
|
|
|
"@types/shortid": "0.0.29",
|
2021-04-02 14:34:55 -04:00
|
|
|
"@types/supertest": "2.0.11",
|
2021-05-05 16:27:14 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.22.1",
|
|
|
|
"@typescript-eslint/parser": "4.22.1",
|
2021-05-09 08:41:30 -04:00
|
|
|
"eslint": "7.26.0",
|
2021-04-24 11:33:20 -04:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
2021-01-05 17:12:43 -05:00
|
|
|
"eslint-plugin-import": "2.22.1",
|
2021-01-06 17:16:28 -05:00
|
|
|
"jest": "26.6.3",
|
2021-01-06 17:44:29 -05:00
|
|
|
"prettier": "2.2.1",
|
2021-01-25 17:02:40 -05:00
|
|
|
"supertest": "6.1.3",
|
2021-05-05 12:10:56 -04:00
|
|
|
"ts-jest": "26.5.6",
|
2021-05-09 08:41:15 -04:00
|
|
|
"ts-loader": "9.1.2",
|
2021-01-06 16:51:21 -05:00
|
|
|
"ts-node": "9.1.1",
|
2021-01-05 17:12:43 -05:00
|
|
|
"tsconfig-paths": "3.9.0",
|
2021-04-13 16:04:08 -04:00
|
|
|
"typescript": "4.2.4"
|
2017-03-08 05:45:51 -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": {
|
|
|
|
"tsconfig": "tsconfig.test.json"
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 03:53:29 -04:00
|
|
|
}
|
|
|
|
}
|