package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "thinkjs-application",
  3. "description": "application created by thinkjs",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "start": "node development.js",
  7. "compile": "babel --no-babelrc src/ --presets think-node --out-dir app/",
  8. "lint": "eslint src/",
  9. "lint-fix": "eslint --fix src/"
  10. },
  11. "dependencies": {
  12. "gm": "^1.23.0",
  13. "jsonwebtoken": "^8.0.0",
  14. "kcors": "^2.2.1",
  15. "lodash": "^4.17.4",
  16. "moment": "^2.18.1",
  17. "request": "^2.81.0",
  18. "request-promise": "^4.2.1",
  19. "think-cache": "^1.0.0",
  20. "think-cache-file": "^1.0.8",
  21. "think-logger3": "^1.0.0",
  22. "think-model": "^1.0.0",
  23. "think-model-mysql": "^1.0.0",
  24. "think-session": "^1.0.0",
  25. "think-session-file": "^1.0.5",
  26. "think-view": "^1.0.0",
  27. "think-view-nunjucks": "^1.0.1",
  28. "thinkjs": "^3.0.0"
  29. },
  30. "devDependencies": {
  31. "babel-cli": "^6.24.1",
  32. "babel-preset-think-node": "^1.0.0",
  33. "node-notifier": "^5.0.2",
  34. "think-watcher": "^3.0.0",
  35. "think-inspect": "0.0.2",
  36. "think-babel": "^1.0.3",
  37. "eslint": "^4.2.0",
  38. "eslint-config-think": "^1.0.0"
  39. },
  40. "repository": "",
  41. "license": "MIT",
  42. "engines": {
  43. "node": ">=6.0.0"
  44. },
  45. "readmeFilename": "README.md"
  46. }