Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 "name": "jellyseerr", 3 "version": "1.4.1", 4 "private": true, 5 "scripts": { 6 "dev": "nodemon -e ts --watch server --watch overseerr-api.yml -e .json,.ts,.yml -x ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/index.ts", 7 "build:server": "tsc --project server/tsconfig.json && copyfiles -u 2 server/templates/**/*.{html,pug} dist/templates && tsc-alias -p server/tsconfig.json", 8 "build:next": "next build", 9 "build": "yarn build:next && yarn build:server", 10 "lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\" --cache", 11 "start": "NODE_ENV=production node dist/index.js", 12 "i18n:extract": "extract-messages -l=en -o src/i18n/locale -d en --flat true --overwriteDefault true \"./src/**/!(*.test).{ts,tsx}\"", 13 "migration:generate": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:generate -d server/datasource.ts", 14 "migration:create": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:create -d server/datasource.ts", 15 "migration:run": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:run -d server/datasource.ts", 16 "format": "prettier --loglevel warn --write --cache .", 17 "format:check": "prettier --check --cache .", 18 "typecheck": "yarn typecheck:server && yarn typecheck:client", 19 "typecheck:server": "tsc --project server/tsconfig.json --noEmit", 20 "typecheck:client": "tsc --noEmit", 21 "prepare": "husky install", 22 "cypress:open": "cypress open", 23 "cypress:prepare": "ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/scripts/prepareTestDb.ts", 24 "cypress:build": "yarn build && yarn cypress:prepare" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "https://github.com/fallenbagel/jellyseerr.git" 29 }, 30 "license": "MIT", 31 "dependencies": { 32 "@formatjs/intl-displaynames": "6.2.3", 33 "@formatjs/intl-locale": "3.0.11", 34 "@formatjs/intl-pluralrules": "5.1.8", 35 "@formatjs/intl-utils": "3.8.4", 36 "@headlessui/react": "1.7.7", 37 "@heroicons/react": "2.0.13", 38 "@supercharge/request-ip": "1.2.0", 39 "@svgr/webpack": "6.5.1", 40 "@tanem/react-nprogress": "5.0.22", 41 "ace-builds": "1.14.0", 42 "axios": "1.2.2", 43 "axios-rate-limit": "1.3.0", 44 "bcrypt": "5.1.0", 45 "bowser": "2.11.0", 46 "connect-typeorm": "1.1.4", 47 "cookie-parser": "1.4.6", 48 "copy-to-clipboard": "3.3.3", 49 "country-flag-icons": "1.5.5", 50 "cronstrue": "2.21.0", 51 "csurf": "1.11.0", 52 "date-fns": "2.29.3", 53 "dayjs": "1.11.7", 54 "email-templates": "9.0.0", 55 "email-validator": "2.0.4", 56 "express": "4.18.2", 57 "express-openapi-validator": "4.13.8", 58 "express-rate-limit": "6.7.0", 59 "express-session": "1.17.3", 60 "formik": "2.2.9", 61 "gravatar-url": "3.1.0", 62 "intl": "1.2.5", 63 "lodash": "4.17.21", 64 "next": "12.3.4", 65 "node-cache": "5.1.2", 66 "node-gyp": "9.3.1", 67 "node-schedule": "2.1.0", 68 "nodemailer": "6.8.0", 69 "openpgp": "5.5.0", 70 "plex-api": "5.3.2", 71 "pug": "3.0.2", 72 "pulltorefreshjs": "0.1.22", 73 "react": "18.2.0", 74 "react-ace": "10.1.0", 75 "react-animate-height": "2.1.2", 76 "react-aria": "3.22.0", 77 "react-dom": "18.2.0", 78 "react-intersection-observer": "9.4.1", 79 "react-intl": "6.2.5", 80 "react-markdown": "8.0.4", 81 "react-popper-tooltip": "4.4.2", 82 "react-select": "5.7.0", 83 "react-spring": "9.6.1", 84 "react-tailwindcss-datepicker-sct": "1.3.4", 85 "react-toast-notifications": "2.5.1", 86 "react-truncate-markup": "5.1.2", 87 "react-use-clipboard": "1.0.9", 88 "reflect-metadata": "0.1.13", 89 "secure-random-password": "0.2.3", 90 "semver": "7.3.8", 91 "sqlite3": "5.1.4", 92 "swagger-ui-express": "4.6.0", 93 "swr": "2.0.0", 94 "typeorm": "0.3.11", 95 "web-push": "3.5.0", 96 "winston": "3.8.2", 97 "winston-daily-rotate-file": "4.7.1", 98 "xml2js": "0.4.23", 99 "yamljs": "0.3.0", 100 "yup": "0.32.11", 101 "zod": "3.20.2" 102 }, 103 "devDependencies": { 104 "@babel/cli": "7.20.7", 105 "@commitlint/cli": "17.4.0", 106 "@commitlint/config-conventional": "17.4.0", 107 "@semantic-release/changelog": "6.0.2", 108 "@semantic-release/commit-analyzer": "9.0.2", 109 "@semantic-release/exec": "6.0.3", 110 "@semantic-release/git": "10.0.1", 111 "@tailwindcss/aspect-ratio": "0.4.2", 112 "@tailwindcss/forms": "0.5.3", 113 "@tailwindcss/typography": "0.5.8", 114 "@types/bcrypt": "5.0.0", 115 "@types/cookie-parser": "1.4.3", 116 "@types/country-flag-icons": "1.2.0", 117 "@types/csurf": "1.11.2", 118 "@types/email-templates": "8.0.4", 119 "@types/express": "4.17.15", 120 "@types/express-session": "1.17.5", 121 "@types/lodash": "4.14.191", 122 "@types/node": "17.0.36", 123 "@types/node-schedule": "2.1.0", 124 "@types/nodemailer": "6.4.7", 125 "@types/pulltorefreshjs": "0.1.5", 126 "@types/react": "18.0.26", 127 "@types/react-dom": "18.0.10", 128 "@types/react-transition-group": "4.4.5", 129 "@types/secure-random-password": "0.2.1", 130 "@types/semver": "7.3.13", 131 "@types/swagger-ui-express": "4.1.3", 132 "@types/web-push": "3.3.2", 133 "@types/xml2js": "0.4.11", 134 "@types/yamljs": "0.2.31", 135 "@types/yup": "0.29.14", 136 "@typescript-eslint/eslint-plugin": "5.48.0", 137 "@typescript-eslint/parser": "5.48.0", 138 "autoprefixer": "10.4.13", 139 "babel-plugin-react-intl": "8.2.25", 140 "babel-plugin-react-intl-auto": "3.3.0", 141 "commitizen": "4.2.6", 142 "copyfiles": "2.4.1", 143 "cy-mobile-commands": "0.3.0", 144 "cypress": "12.3.0", 145 "cz-conventional-changelog": "3.3.0", 146 "eslint": "8.31.0", 147 "eslint-config-next": "12.3.4", 148 "eslint-config-prettier": "8.6.0", 149 "eslint-plugin-formatjs": "4.3.9", 150 "eslint-plugin-jsx-a11y": "6.6.1", 151 "eslint-plugin-no-relative-import-paths": "1.5.2", 152 "eslint-plugin-prettier": "4.2.1", 153 "eslint-plugin-react": "7.31.11", 154 "eslint-plugin-react-hooks": "4.6.0", 155 "extract-react-intl-messages": "4.1.1", 156 "husky": "8.0.3", 157 "lint-staged": "13.1.0", 158 "nodemon": "2.0.20", 159 "postcss": "8.4.20", 160 "prettier": "2.8.1", 161 "prettier-plugin-organize-imports": "3.2.1", 162 "prettier-plugin-tailwindcss": "0.2.1", 163 "semantic-release": "19.0.5", 164 "semantic-release-docker-buildx": "1.0.1", 165 "tailwindcss": "3.2.4", 166 "ts-node": "10.9.1", 167 "tsc-alias": "1.8.2", 168 "tsconfig-paths": "4.1.2", 169 "typescript": "4.9.4" 170 }, 171 "resolutions": { 172 "sqlite3/node-gyp": "8.4.1", 173 "@types/react": "18.0.26", 174 "@types/react-dom": "18.0.10" 175 }, 176 "config": { 177 "commitizen": { 178 "path": "./node_modules/cz-conventional-changelog" 179 } 180 }, 181 "lint-staged": { 182 "**/*.{ts,tsx,js}": [ 183 "prettier --write", 184 "eslint" 185 ], 186 "**/*.{json,md,css}": [ 187 "prettier --write" 188 ] 189 }, 190 "commitlint": { 191 "extends": [ 192 "@commitlint/config-conventional" 193 ] 194 }, 195 "release": { 196 "plugins": [ 197 "@semantic-release/commit-analyzer", 198 "@semantic-release/release-notes-generator", 199 [ 200 "@semantic-release/changelog", 201 { 202 "changelogFile": "CHANGELOG.md" 203 } 204 ], 205 "@semantic-release/npm", 206 [ 207 "@semantic-release/git", 208 { 209 "assets": [ 210 "package.json", 211 "CHANGELOG.md" 212 ], 213 "message": "chore(release): ${nextRelease.version}" 214 } 215 ], 216 "semantic-release-docker-buildx", 217 [ 218 "@semantic-release/github", 219 { 220 "addReleases": "bottom" 221 } 222 ] 223 ], 224 "branches": [ 225 "main" 226 ], 227 "npmPublish": false, 228 "publish": [ 229 { 230 "path": "semantic-release-docker-buildx", 231 "buildArgs": { 232 "COMMIT_TAG": "$GIT_SHA" 233 }, 234 "imageNames": [ 235 "fallenbagel/jellyseerr" 236 ], 237 "platforms": [ 238 "linux/amd64", 239 "linux/arm64", 240 "linux/arm/v7" 241 ] 242 }, 243 "@semantic-release/github" 244 ] 245 } 246}