package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "server",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "typescript": true,
  8. "declarations": true
  9. },
  10. "scripts": {
  11. "start": "egg-scripts start --daemon --title=egg-server-server",
  12. "stop": "egg-scripts stop --title=egg-server-server",
  13. "dev": "egg-bin dev",
  14. "debug": "egg-bin debug",
  15. "test-local": "egg-bin test",
  16. "test": "npm run lint -- --fix && npm run test-local",
  17. "cov": "egg-bin cov",
  18. "tsc": "ets && tsc -p tsconfig.json",
  19. "ci": "npm run lint && npm run cov && npm run tsc",
  20. "autod": "autod",
  21. "lint": "tslint --project . -c tslint.json",
  22. "clean": "ets clean"
  23. },
  24. "dependencies": {
  25. "egg": "^2.6.1",
  26. "egg-mysql": "^3.0.0",
  27. "egg-scripts": "^2.6.0",
  28. "egg-validate": "^2.0.2",
  29. "moment": "^2.24.0"
  30. },
  31. "devDependencies": {
  32. "@types/mocha": "^2.2.40",
  33. "@types/node": "^7.0.12",
  34. "@types/supertest": "^2.0.0",
  35. "autod": "^3.0.1",
  36. "autod-egg": "^1.1.0",
  37. "egg-bin": "^4.11.0",
  38. "egg-ci": "^1.8.0",
  39. "egg-mock": "^3.16.0",
  40. "tslib": "^1.9.0",
  41. "tslint": "^5.0.0",
  42. "tslint-config-egg": "^1.0.0",
  43. "typescript": "^3.0.0"
  44. },
  45. "engines": {
  46. "node": ">=8.9.0"
  47. },
  48. "ci": {
  49. "version": "8"
  50. },
  51. "repository": {
  52. "type": "git",
  53. "url": ""
  54. },
  55. "eslintIgnore": [
  56. "coverage"
  57. ],
  58. "author": "",
  59. "license": "MIT"
  60. }