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

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "dependencies": {
  3. "@excalidraw/eslint-config": "1.0.1",
  4. "@excalidraw/prettier-config": "1.0.2",
  5. "@types/debug": "4.1.5",
  6. "@types/express": "4.17.11",
  7. "@types/node": "14.14.31",
  8. "@types/socket.io": "2.1.4",
  9. "@typescript-eslint/eslint-plugin": "4.16.1",
  10. "@typescript-eslint/parser": "4.16.1",
  11. "debug": "4.3.1",
  12. "dotenv": "^10.0.0",
  13. "eslint": "7.21.0",
  14. "eslint-config-prettier": "8.1.0",
  15. "eslint-plugin-prettier": "3.3.1",
  16. "express": "4.17.1",
  17. "prettier": "2.2.1",
  18. "socket.io": "2.3.0",
  19. "ts-node-dev": "1.1.6",
  20. "typescript": "4.2.3"
  21. },
  22. "license": "MIT",
  23. "main": "dist/index.js",
  24. "name": "excalidraw-portal",
  25. "prettier": "@excalidraw/prettier-config",
  26. "scripts": {
  27. "build": "tsc",
  28. "fix:code": "yarn test:code --fix",
  29. "fix:other": "yarn prettier --write",
  30. "fix": "yarn fix:other && yarn fix:code",
  31. "prettier": "prettier . --ignore-path=.gitignore",
  32. "start": "node dist/index.js",
  33. "start:dev": "ts-node-dev --respawn --transpile-only src/index.ts",
  34. "test:code": "eslint --ext .ts .",
  35. "test:other": "yarn prettier --list-different",
  36. "test": "yarn test:other && yarn test:code"
  37. },
  38. "version": "1.0.0"
  39. }