package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "backend",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "dependencies": {
  7. "bcryptjs": "^2.4.3",
  8. "body-parser": "^1.18.3",
  9. "cookie-parser": "^1.4.4",
  10. "cors": "^2.8.5",
  11. "crypto": "^1.0.1",
  12. "dotenv": "^7.0.0",
  13. "express-fileupload": "^1.1.4",
  14. "graphql-yoga": "^1.17.4",
  15. "jsonwebtoken": "^8.5.1",
  16. "lodash": "^4.17.11",
  17. "mkdirp": "^0.5.1",
  18. "multer": "^1.4.1",
  19. "pdf-extract": "^1.0.11",
  20. "prisma": "^1.30.1",
  21. "prisma-binding": "^2.3.10",
  22. "prisma-client-lib": "^1.30.1",
  23. "python-shell": "^1.0.7",
  24. "rewire": "^4.0.1",
  25. "semaphore-async-await": "^1.5.1",
  26. "shortid": "^2.2.14",
  27. "standard": "^12.0.1"
  28. },
  29. "devDependencies": {
  30. "babel-jest": "^24.8.0",
  31. "babel-plugin-rewire": "^1.2.0",
  32. "graphql-cli": "^3.0.11",
  33. "jest": "^24.8.0",
  34. "jest-transform-graphql": "^2.1.0",
  35. "nodemon": "^1.18.11"
  36. },
  37. "scripts": {
  38. "start": "nodemon -e js,graphql -x node index.js",
  39. "dev": "nodemon -e js,graphql -x node --inspect index.js",
  40. "test": "NODE_ENV=test jest --watch",
  41. "deploy": "prisma deploy",
  42. "pretest": "sed -e 's/:__/:_/' -i node_modules/babel-plugin-jest-hoist/build/index.js"
  43. },
  44. "jest": {
  45. "testPathIgnorePatterns": [
  46. "<rootDir>/node_modules/",
  47. "__mocks__/"
  48. ],
  49. "transform": {
  50. "\\.(gql|graphql)$": "jest-transform-graphql",
  51. ".*": "babel-jest"
  52. }
  53. },
  54. "keywords": [],
  55. "author": "",
  56. "license": "ISC"
  57. }