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": {
|
2020-07-21 15:24:56 -04:00
|
|
|
"prebuild": "rimraf dist",
|
|
|
|
"build": "nest build",
|
|
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
2021-01-05 17:02:12 -05:00
|
|
|
"format:check": "prettier --check \"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-01-06 06:38:33 -05:00
|
|
|
"test:e2e": "jest --config jest-e2e.json",
|
|
|
|
"test:e2e:cov": "jest --config jest-e2e.json --coverage"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-01-05 17:12:43 -05:00
|
|
|
"@nestjs/common": "7.4.4",
|
|
|
|
"@nestjs/core": "7.4.4",
|
|
|
|
"@nestjs/platform-express": "7.4.4",
|
|
|
|
"@nestjs/swagger": "4.6.1",
|
|
|
|
"@nestjs/typeorm": "7.1.4",
|
2020-07-24 15:50:30 -04:00
|
|
|
"class-transformer": "^0.2.3",
|
2021-01-05 17:12:43 -05:00
|
|
|
"class-validator": "0.12.2",
|
|
|
|
"connect-typeorm": "1.1.4",
|
|
|
|
"file-type": "15.0.1",
|
|
|
|
"raw-body": "2.4.1",
|
|
|
|
"reflect-metadata": "0.1.13",
|
|
|
|
"rimraf": "3.0.2",
|
|
|
|
"rxjs": "6.6.3",
|
|
|
|
"shortid": "2.2.16",
|
|
|
|
"sqlite3": "5.0.0",
|
|
|
|
"swagger-ui-express": "4.1.4",
|
|
|
|
"typeorm": "0.2.28"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-05 17:12:43 -05:00
|
|
|
"@nestjs/cli": "7.5.1",
|
|
|
|
"@nestjs/schematics": "7.1.2",
|
|
|
|
"@nestjs/testing": "7.4.4",
|
|
|
|
"@types/express": "4.17.8",
|
2020-07-21 15:24:56 -04:00
|
|
|
"@types/jest": "25.2.3",
|
2021-01-05 17:12:43 -05:00
|
|
|
"@types/node": "13.13.28",
|
|
|
|
"@types/supertest": "2.0.10",
|
2020-07-21 15:24:56 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "3.0.2",
|
|
|
|
"@typescript-eslint/parser": "3.0.2",
|
|
|
|
"eslint": "7.1.0",
|
2021-01-05 17:12:43 -05:00
|
|
|
"eslint-config-prettier": "6.14.0",
|
|
|
|
"eslint-plugin-import": "2.22.1",
|
2020-07-21 15:24:56 -04:00
|
|
|
"jest": "26.0.1",
|
2021-01-05 17:12:43 -05:00
|
|
|
"prettier": "1.19.1",
|
|
|
|
"supertest": "4.0.2",
|
2020-07-21 15:24:56 -04:00
|
|
|
"ts-jest": "26.1.0",
|
2021-01-05 17:12:43 -05:00
|
|
|
"ts-loader": "6.2.2",
|
|
|
|
"ts-node": "8.10.2",
|
|
|
|
"tsconfig-paths": "3.9.0",
|
|
|
|
"typescript": "3.9.7"
|
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",
|
|
|
|
"testEnvironment": "node"
|
2022-01-23 16:02:58 -05:00
|
|
|
}
|
|
|
|
}
|