package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "frontend",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "next",
  8. "build": "next build",
  9. "test": "NODE_ENV=test jest --watch"
  10. },
  11. "keywords": [],
  12. "author": "",
  13. "license": "ISC",
  14. "dependencies": {
  15. "apollo-boost": "^0.3.1",
  16. "apollo-cache-inmemory": "^1.5.1",
  17. "apollo-client": "^2.5.1",
  18. "apollo-link": "^1.2.11",
  19. "apollo-link-error": "^1.1.10",
  20. "apollo-link-http": "^1.5.14",
  21. "apollo-upload-client": "^10.0.0",
  22. "dotenv": "^7.0.0",
  23. "graphql": "^14.2.1",
  24. "graphql-tag": "^2.10.1",
  25. "next": "^8.0.4",
  26. "next-link": "^2.0.0",
  27. "next-with-apollo": "^3.4.0",
  28. "nprogress": "^0.2.0",
  29. "prettier-standard": "^9.1.1",
  30. "react": "^16.8.6",
  31. "react-adopt": "^0.6.0",
  32. "react-apollo": "^2.5.4",
  33. "react-dom": "^16.8.6",
  34. "standard": "^12.0.1",
  35. "styled-components": "^4.2.0"
  36. },
  37. "devDependencies": {
  38. "babel-jest": "^24.8.0",
  39. "babel-plugin-styled-components": "^1.10.0",
  40. "jest": "^24.8.0",
  41. "jest-transform-graphql": "^2.1.0",
  42. "enzyme": "^3.9.0",
  43. "enzyme-adapter-react-16": "^1.12.1"
  44. },
  45. "jest": {
  46. "setupFilesAfterEnv": [
  47. "<rootDir>/jest.setup.js"
  48. ],
  49. "testPathIgnorePatterns": [
  50. "<rootDir>/.next/",
  51. "<rootDir>/node_modules/"
  52. ],
  53. "transform": {
  54. "\\.(gql|graphql)$": "jest-transform-graphql",
  55. ".*": "babel-jest"
  56. }
  57. }
  58. }