package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "thinkjs": "^3.0.0"
  27. },
  28. "devDependencies": {
  29. "babel-cli": "^6.24.1",
  30. "babel-preset-think-node": "^1.0.0",
  31. "node-notifier": "^5.0.2",
  32. "think-watcher": "^3.0.0",
  33. "think-inspect": "0.0.2",
  34. "think-babel": "^1.0.3",
  35. "eslint": "^4.2.0",
  36. "eslint-config-think": "^1.0.0"
  37. },
  38. "repository": "",
  39. "license": "MIT",
  40. "engines": {
  41. "node": ">=6.0.0"
  42. },
  43. "readmeFilename": "README.md"
  44. }