You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.5 KiB
120 lines
3.5 KiB
{
|
|
"name": "overseerr",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nodemon -e ts --watch server --watch overseerr-api.yml -e .json,.ts,.yml -x ts-node --files --project server/tsconfig.json server/index.ts",
|
|
"build:server": "tsc --project server/tsconfig.json",
|
|
"build:next": "next build",
|
|
"build": "yarn build:next && yarn build:server",
|
|
"lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\"",
|
|
"start": "NODE_ENV=production node dist/index.js",
|
|
"i18n:extract": "extract-messages -l=en,ja -o src/i18n/locale -d en --flat true './src/**/!(*.test).{ts,tsx}'"
|
|
},
|
|
"dependencies": {
|
|
"@svgr/webpack": "^5.4.0",
|
|
"@tailwindcss/ui": "^0.6.2",
|
|
"axios": "^0.20.0",
|
|
"body-parser": "^1.19.0",
|
|
"bowser": "^2.11.0",
|
|
"connect-typeorm": "^1.1.4",
|
|
"cookie-parser": "^1.4.5",
|
|
"express": "^4.17.1",
|
|
"express-openapi-validator": "^3.16.15",
|
|
"express-session": "^1.17.1",
|
|
"intl": "^1.2.5",
|
|
"lodash": "^4.17.20",
|
|
"next": "9.5.4",
|
|
"nookies": "^2.4.0",
|
|
"plex-api": "^5.3.1",
|
|
"react": "16.13.1",
|
|
"react-dom": "16.13.1",
|
|
"react-intl": "^5.8.5",
|
|
"react-spring": "^8.0.27",
|
|
"react-toast-notifications": "^2.4.0",
|
|
"react-transition-group": "^4.4.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"sqlite3": "^5.0.0",
|
|
"swagger-ui-express": "^4.1.4",
|
|
"swr": "^0.3.5",
|
|
"typeorm": "^0.2.26",
|
|
"uuid": "^8.3.0",
|
|
"winston": "^3.3.3",
|
|
"xml2js": "^0.4.23",
|
|
"yamljs": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.11.6",
|
|
"@commitlint/cli": "^11.0.0",
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
"@types/body-parser": "^1.19.0",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/express": "^4.17.8",
|
|
"@types/express-session": "^1.17.0",
|
|
"@types/lodash": "^4.14.161",
|
|
"@types/node": "^14.10.0",
|
|
"@types/react": "^16.9.49",
|
|
"@types/react-dom": "^16.9.8",
|
|
"@types/react-toast-notifications": "^2.4.0",
|
|
"@types/react-transition-group": "^4.4.0",
|
|
"@types/swagger-ui-express": "^4.1.2",
|
|
"@types/uuid": "^8.3.0",
|
|
"@types/xml2js": "^0.4.5",
|
|
"@types/yamljs": "^0.2.31",
|
|
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
|
"@typescript-eslint/parser": "^3.10.1",
|
|
"babel-plugin-react-intl": "^8.2.2",
|
|
"babel-plugin-react-intl-auto": "^3.3.0",
|
|
"commitizen": "^4.2.1",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-formatjs": "^2.7.10",
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.20.6",
|
|
"eslint-plugin-react-hooks": "^4.1.2",
|
|
"extract-react-intl-messages": "^4.1.1",
|
|
"husky": "^4.3.0",
|
|
"lint-staged": "^10.4.0",
|
|
"nodemon": "^2.0.4",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"prettier": "^2.1.2",
|
|
"tailwindcss": "^1.8.12",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.0.2"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
|
|
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{ts,tsx,js}": [
|
|
"prettier --write",
|
|
"eslint",
|
|
"git add"
|
|
],
|
|
"**/*.{json,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|