package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "sugarnode-ts",
  3. "version": "1.0.0",
  4. "description": "A fast-easy way to learn or use nodejs to create your own (web) server",
  5. "main": "main.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "build": "tsc",
  9. "build-example": "tsc -p tsconfigExample.json",
  10. "clean": "tsc --build --clean",
  11. "watch": "tsc --watch",
  12. "start": "node dist/main.js"
  13. },
  14. "keywords": [
  15. "Node",
  16. "NodeJs",
  17. "MVC",
  18. "Syntactic",
  19. "sugar"
  20. ],
  21. "author": "HonorLee",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "@types/formidable": "^2.0.5",
  25. "@types/memcached": "^2.2.7",
  26. "@types/mongodb": "^4.0.7",
  27. "@types/mysql": "^2.15.21",
  28. "@types/node": "^18.0.0",
  29. "@types/redis": "^4.0.11",
  30. "@typescript-eslint/eslint-plugin": "^5.29.0",
  31. "@typescript-eslint/parser": "^5.29.0",
  32. "eslint": "^8.18.0",
  33. "typescript": "^4.7.4"
  34. },
  35. "dependencies": {
  36. "colors": "^1.4.0",
  37. "ejs": "^3.1.8",
  38. "formidable": "^2.0.1",
  39. "fs-extra": "^10.1.0",
  40. "klaw-sync": "^6.0.0",
  41. "memcached": "^2.2.2",
  42. "mongodb": "^4.7.0",
  43. "mysql": "^2.18.1",
  44. "redis": "^4.1.0",
  45. "request": "^2.88.2",
  46. "tracer": "^1.1.6"
  47. }
  48. }