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.

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "cross-env": "^7.0.3",
  12. "debug": "4.3.1",
  13. "dotenv": "^10.0.0",
  14. "eslint": "7.21.0",
  15. "eslint-config-prettier": "8.1.0",
  16. "eslint-plugin-prettier": "3.3.1",
  17. "express": "4.17.1",
  18. "prettier": "2.2.1",
  19. "socket.io": "2.3.0",
  20. "ts-node-dev": "^1.1.8",
  21. "typescript": "4.2.3"
  22. },
  23. "license": "MIT",
  24. "main": "dist/index.js",
  25. "name": "excalidraw-portal",
  26. "prettier": "@excalidraw/prettier-config",
  27. "scripts": {
  28. "build": "tsc",
  29. "fix:code": "yarn test:code --fix",
  30. "fix:other": "yarn prettier --write",
  31. "fix": "yarn fix:other && yarn fix:code",
  32. "prettier": "prettier . --ignore-path=.gitignore",
  33. "start": "node dist/index.js",
  34. "start:dev": "cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only src/index.ts",
  35. "test:code": "eslint --ext .ts .",
  36. "test:other": "yarn prettier --list-different",
  37. "test": "yarn test:other && yarn test:code"
  38. },
  39. "version": "1.0.0"
  40. }