mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
89 lines
2.9 KiB
JSON
89 lines
2.9 KiB
JSON
{
|
|
"name": "kodi-api-server",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "nest build && npm run copy-files",
|
|
"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/src/main",
|
|
"lint": "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 ./test/jest-e2e.json",
|
|
"typeorm": "ts-node ./node_modules/typeorm/cli",
|
|
"typeorm:run-migrations": "npm run typeorm migration:run -- -d ./src/config/type-orm-migrations.config.ts",
|
|
"typeorm:generate-migration": "npm run typeorm -- -d ./src/config/type-orm-migrations.config.ts migration:generate ./migrations/$npm_config_name",
|
|
"typeorm:create-migration": "npm run typeorm -- migration:create ./migrations/$npm_config_name",
|
|
"typeorm:revert-migration": "npm run typeorm -- -d ./src/config/type-orm-migrations.config.ts migration:revert",
|
|
"copy-files": "copyfiles -u 1 src/**/*.html dist/src/"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/axios": "^1.0.0",
|
|
"@nestjs/common": "^9.0.0",
|
|
"@nestjs/core": "^9.0.0",
|
|
"@nestjs/platform-express": "^9.0.0",
|
|
"@nestjs/serve-static": "^3.0.0",
|
|
"@nestjs/typeorm": "^9.0.1",
|
|
"@types/fluent-ffmpeg": "^2.1.20",
|
|
"dotenv": "^16.0.3",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rimraf": "^3.0.2",
|
|
"rxjs": "^7.2.0",
|
|
"sqlite": "^4.1.2",
|
|
"sqlite3": "^5.1.2",
|
|
"torrent-name-parser": "^0.6.5",
|
|
"typeorm": "^0.3.11"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^9.0.0",
|
|
"@nestjs/schematics": "^9.0.0",
|
|
"@nestjs/testing": "^9.0.0",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jest": "28.1.8",
|
|
"@types/node": "^16.0.0",
|
|
"@types/supertest": "^2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "28.1.3",
|
|
"prettier": "^2.3.2",
|
|
"source-map-support": "^0.5.20",
|
|
"supertest": "^6.1.3",
|
|
"ts-jest": "28.0.8",
|
|
"ts-loader": "^9.2.3",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "4.1.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|