package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "semaphore-async-await": "^1.5.1",
  25. "shortid": "^2.2.14",
  26. "standard": "^12.0.1"
  27. },
  28. "devDependencies": {
  29. "babel-jest": "^24.8.0",
  30. "jest": "^24.8.0",
  31. "jest-transform-graphql": "^2.1.0",
  32. "graphql-cli": "^3.0.11",
  33. "nodemon": "^1.18.11"
  34. },
  35. "scripts": {
  36. "start": "nodemon -e js,graphql -x node index.js",
  37. "dev": "nodemon -e js,graphql -x node --inspect index.js",
  38. "test": "NODE_ENV=test jest --watch",
  39. "deploy": "prisma deploy"
  40. },
  41. "jest": {
  42. "testPathIgnorePatterns": [
  43. "<rootDir>/node_modules/",
  44. "__mocks__/"
  45. ],
  46. "transform": {
  47. "\\.(gql|graphql)$": "jest-transform-graphql",
  48. ".*": "babel-jest"
  49. }
  50. },
  51. "keywords": [],
  52. "author": "",
  53. "license": "ISC"
  54. }