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.9KB

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