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.

package.json 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "with-typescript-eslint-jest",
  3. "author": "@erikdstock",
  4. "license": "MIT",
  5. "version": "1.0.0",
  6. "scripts": {
  7. "dev": "next dev",
  8. "build": "next build",
  9. "start": "next start",
  10. "type-check": "tsc --pretty --noEmit",
  11. "format": "prettier --write .",
  12. "lint": "eslint . --ext ts --ext tsx --ext js",
  13. "test": "jest",
  14. "test:watch": "jest --watchAll",
  15. "test:update": "jest --updateSnapshot",
  16. "test-all": "yarn lint && yarn type-check && yarn test"
  17. },
  18. "husky": {
  19. "hooks": {
  20. "pre-commit": "lint-staged",
  21. "pre-push": "yarn run type-check"
  22. }
  23. },
  24. "lint-staged": {
  25. "*.@(ts|tsx)": [
  26. "yarn lint",
  27. "yarn format"
  28. ]
  29. },
  30. "dependencies": {
  31. "@monaco-editor/react": "^4.2.1",
  32. "@radix-ui/react-checkbox": "^0.0.16",
  33. "@radix-ui/react-context-menu": "^0.0.22",
  34. "@radix-ui/react-dialog": "^0.0.18",
  35. "@radix-ui/react-dropdown-menu": "^0.0.21",
  36. "@radix-ui/react-hover-card": "^0.0.3",
  37. "@radix-ui/react-icons": "^1.0.3",
  38. "@radix-ui/react-radio-group": "^0.0.17",
  39. "@radix-ui/react-tooltip": "^0.0.19",
  40. "@sentry/integrations": "^6.7.2",
  41. "@sentry/nextjs": "^6.7.2",
  42. "@sentry/node": "^6.7.2",
  43. "@sentry/react": "^6.7.2",
  44. "@sentry/tracing": "^6.7.2",
  45. "@sentry/webpack-plugin": "^1.15.1",
  46. "@state-designer/react": "^1.7.32",
  47. "@stitches/react": "^0.2.2",
  48. "@types/uuid": "^8.3.0",
  49. "browser-fs-access": "^0.17.3",
  50. "framer-motion": "^4.1.17",
  51. "gtag": "^1.0.1",
  52. "idb-keyval": "^5.0.6",
  53. "ismobilejs": "^1.1.1",
  54. "monaco-editor": "^0.25.2",
  55. "next": "latest",
  56. "next-auth": "^3.27.0",
  57. "next-pwa": "^5.2.21",
  58. "perfect-freehand": "^0.4.9",
  59. "react": "^17.0.2",
  60. "react-dom": "^17.0.2",
  61. "react-feather": "^2.0.9",
  62. "react-use-gesture": "^9.1.3",
  63. "uuid": "^8.3.2"
  64. },
  65. "devDependencies": {
  66. "@testing-library/react": "^11.2.5",
  67. "@types/jest": "^26.0.23",
  68. "@types/node": "^14.14.25",
  69. "@types/react": "^17.0.1",
  70. "@typescript-eslint/eslint-plugin": "^4.14.2",
  71. "@typescript-eslint/parser": "^4.14.2",
  72. "babel-jest": "^27.0.2",
  73. "eslint": "^7.19.0",
  74. "eslint-config-next": "^11.0.0",
  75. "eslint-config-prettier": "^7.2.0",
  76. "eslint-plugin-react": "^7.19.0",
  77. "husky": "^4.2.3",
  78. "identity-obj-proxy": "^3.0.0",
  79. "jest": "^27.0.4",
  80. "jest-watch-typeahead": "^0.6.1",
  81. "lint-staged": "^10.0.10",
  82. "prettier": "^2.3.1",
  83. "typescript": "^4.1.3"
  84. },
  85. "prettier": {
  86. "semi": false,
  87. "singleQuote": true,
  88. "tabWidth": 2,
  89. "useTabs": false
  90. }
  91. }