Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "excalidraw-room",
  3. "version": "1.0.0",
  4. "description": "Excalidraw collaboration server",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "fix": "yarn prettier --write",
  9. "lint": "yarn prettier --list-different",
  10. "prettier": "prettier \"**/*.{ts,md,json,yaml,yml}\"",
  11. "start": "node dist/index.js",
  12. "test": "yarn lint"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/excalidraw/excalidraw-room.git"
  17. },
  18. "keywords": [],
  19. "author": "",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/excalidraw/excalidraw-room/issues"
  23. },
  24. "homepage": "https://github.com/excalidraw/excalidraw-room#readme",
  25. "dependencies": {
  26. "debug": "4.1.1",
  27. "eslint": "7.3.1",
  28. "eslint-config-prettier": "6.10.1",
  29. "eslint-plugin-prettier": "3.1.4",
  30. "express": "4.17.1",
  31. "prettier": "2.0.5",
  32. "socket.io": "2.3.0"
  33. },
  34. "devDependencies": {
  35. "@types/socket.io": "2.1.4",
  36. "@types/debug": "4.1.5",
  37. "@types/express": "4.17.6",
  38. "@types/node": "13.9.8",
  39. "typescript": "3.9.5"
  40. },
  41. "eslintConfig": {
  42. "extends": [
  43. "prettier"
  44. ],
  45. "plugins": [
  46. "prettier"
  47. ],
  48. "rules": {
  49. "curly": "warn",
  50. "no-console": [
  51. "warn",
  52. {
  53. "allow": [
  54. "warn",
  55. "error",
  56. "info"
  57. ]
  58. }
  59. ],
  60. "no-else-return": "warn",
  61. "no-useless-return": "warn",
  62. "prefer-const": [
  63. "warn",
  64. {
  65. "destructuring": "all"
  66. }
  67. ],
  68. "prefer-template": "warn",
  69. "prettier/prettier": "warn"
  70. }
  71. }
  72. }