package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "backend",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "watch-ts": "tsc -w --preserveWatchOutput",
  8. "server": "nodemon dist/index.js",
  9. "start": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run server\"",
  10. "dev": "nodemon -e ts,js,graphql -x node --inspect index.ts",
  11. "deploy": "prisma deploy",
  12. "test": "jest --watch",
  13. "preinstall": "npx npm-force-resolutions"
  14. },
  15. "author": "Tomi Cvetic <tomi.cvetic@gmail.com>",
  16. "license": "GPL-3.0",
  17. "dependencies": {
  18. "@types/bcryptjs": "^2.4.2",
  19. "@types/cookie-parser": "^1.4.2",
  20. "@types/fluent-ffmpeg": "^2.1.14",
  21. "@types/jsonwebtoken": "^8.3.9",
  22. "@types/lodash": "^4.14.150",
  23. "@types/randombytes": "^2.0.0",
  24. "@types/sharp": "^0.24.0",
  25. "apollo-server-express": "^2.12.0",
  26. "bcryptjs": "^2.4.3",
  27. "body-parser": "1.19.0",
  28. "cookie-parser": "1.4.4",
  29. "cors": "2.8.5",
  30. "date-fns": "2.11.1",
  31. "dotenv": "8.2.0",
  32. "fluent-ffmpeg": "^2.1.2",
  33. "graphql": "^14.6.0",
  34. "jsonwebtoken": "^8.5.1",
  35. "lodash": "^4.17.15",
  36. "nodemailer": "^6.4.6",
  37. "prisma": "^1.34.10",
  38. "prisma-binding": "2.3.16",
  39. "promisify": "0.0.3",
  40. "randombytes": "^2.1.0",
  41. "sharp": "^0.25.2"
  42. },
  43. "devDependencies": {
  44. "@babel/preset-typescript": "^7.9.0",
  45. "@typescript-eslint/eslint-plugin": "^2.29.0",
  46. "@typescript-eslint/parser": "^2.29.0",
  47. "babel-plugin-module-resolver": "^4.0.0",
  48. "concurrently": "^5.1.0",
  49. "graphql-cli": "3.0.14",
  50. "jest": "^25.4.0",
  51. "nodemon": "1.19.4",
  52. "ts-jest": "^25.4.0",
  53. "typescript": "^3.8.3"
  54. },
  55. "resolutions": {
  56. "**/graphql-upload": "^9.0.0",
  57. "**/**/graphql-upload": "^9.0.0",
  58. "**/**/**/graphql-upload": "^9.0.0",
  59. "**/**/**/**/graphql-upload": "^9.0.0",
  60. "**/**/**/**/**/graphql-upload": "^9.0.0"
  61. }
  62. }