hedgedoc/package.json
Philip Molares 1a8ae49e98
Dependency: Add eslint-plugin-jest
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2021-04-12 16:59:30 +02:00

101 lines
3 KiB
JSON

{
"name": "hedgedoc",
"version": "2.0.0",
"description": "Realtime collaborative markdown notes on all platforms.",
"author": "",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "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",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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",
"test:e2e": "jest --config jest-e2e.json --runInBand",
"test:e2e:cov": "jest --config jest-e2e.json --coverage --runInBand"
},
"dependencies": {
"@azure/storage-blob": "12.5.0",
"@nestjs/common": "7.6.15",
"@nestjs/config": "0.6.3",
"@nestjs/core": "7.6.15",
"@nestjs/passport": "7.1.5",
"@nestjs/platform-express": "7.6.15",
"@nestjs/schedule": "0.4.3",
"@nestjs/swagger": "4.8.0",
"@nestjs/typeorm": "7.1.5",
"@types/bcrypt": "3.0.1",
"@types/cron": "1.7.2",
"@types/minio": "7.0.7",
"@types/node-fetch": "2.5.10",
"@types/passport-http-bearer": "1.0.36",
"bcrypt": "5.0.1",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"cli-color": "2.0.0",
"connect-typeorm": "1.1.4",
"eslint-plugin-jest": "^24.3.5",
"file-type": "16.3.0",
"joi": "17.4.0",
"minio": "7.0.18",
"nest-router": "1.0.9",
"node-fetch": "2.6.1",
"passport": "0.4.1",
"passport-http-bearer": "1.0.1",
"raw-body": "2.4.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"shortid": "2.2.16",
"sqlite3": "5.0.2",
"swagger-ui-express": "4.1.6",
"typeorm": "0.2.32"
},
"devDependencies": {
"@nestjs/cli": "7.6.0",
"@nestjs/schematics": "7.3.1",
"@nestjs/testing": "7.6.15",
"@types/cli-color": "2.0.0",
"@types/express": "4.17.11",
"@types/jest": "26.0.22",
"@types/node": "13.13.50",
"@types/shortid": "0.0.29",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"prettier": "2.2.1",
"supertest": "6.1.3",
"ts-jest": "26.5.5",
"ts-loader": "8.1.0",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}