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\"",
|
|
|
|
"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",
|
2020-10-03 12:00:12 -04:00
|
|
|
"test:e2e": "jest --config jest-e2e.json"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-07-21 15:24:56 -04:00
|
|
|
"@nestjs/common": "^7.0.0",
|
|
|
|
"@nestjs/core": "^7.0.0",
|
|
|
|
"@nestjs/platform-express": "^7.0.0",
|
2020-07-26 10:53:43 -04:00
|
|
|
"@nestjs/swagger": "^4.5.12",
|
2020-07-24 15:50:30 -04:00
|
|
|
"@nestjs/typeorm": "^7.1.0",
|
|
|
|
"class-transformer": "^0.2.3",
|
|
|
|
"class-validator": "^0.12.2",
|
2020-08-13 14:25:43 -04:00
|
|
|
"connect-typeorm": "^1.1.4",
|
2020-10-16 16:35:53 -04:00
|
|
|
"file-type": "^15.0.1",
|
2020-09-19 08:51:12 -04:00
|
|
|
"raw-body": "^2.4.1",
|
2022-01-23 16:02:58 -05:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2020-07-21 15:24:56 -04:00
|
|
|
"rimraf": "^3.0.2",
|
2020-07-24 15:50:30 -04:00
|
|
|
"rxjs": "^6.5.4",
|
2020-07-25 14:24:59 -04:00
|
|
|
"shortid": "^2.2.15",
|
2020-07-24 15:50:30 -04:00
|
|
|
"sqlite3": "^5.0.0",
|
2020-07-26 10:53:43 -04:00
|
|
|
"swagger-ui-express": "^4.1.4",
|
2020-07-24 15:50:30 -04:00
|
|
|
"typeorm": "^0.2.25"
|
2022-01-23 16:02:58 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-21 15:24:56 -04:00
|
|
|
"@nestjs/cli": "^7.0.0",
|
|
|
|
"@nestjs/schematics": "^7.0.0",
|
|
|
|
"@nestjs/testing": "^7.0.0",
|
|
|
|
"@types/express": "^4.17.3",
|
|
|
|
"@types/jest": "25.2.3",
|
|
|
|
"@types/node": "^13.9.1",
|
|
|
|
"@types/supertest": "^2.0.8",
|
|
|
|
"@typescript-eslint/eslint-plugin": "3.0.2",
|
|
|
|
"@typescript-eslint/parser": "3.0.2",
|
|
|
|
"eslint": "7.1.0",
|
|
|
|
"eslint-config-prettier": "^6.10.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
|
|
|
"jest": "26.0.1",
|
|
|
|
"prettier": "^1.19.1",
|
|
|
|
"supertest": "^4.0.2",
|
|
|
|
"ts-jest": "26.1.0",
|
|
|
|
"ts-loader": "^6.2.1",
|
|
|
|
"ts-node": "^8.6.2",
|
|
|
|
"tsconfig-paths": "^3.9.0",
|
|
|
|
"typescript": "^3.7.4"
|
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
|
|
|
}
|
|
|
|
}
|