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.
 
 
 

92 regels
2.4 KiB

  1. {
  2. "name": "argon-dashboard-nodejs",
  3. "version": "1.0.1",
  4. "private": true,
  5. "scripts": {
  6. "pm2": "pm2",
  7. "gulp": "gulp",
  8. "start": "node ./bin/www",
  9. "start:staging": "pm2 start",
  10. "dev": "concurrently \"pm2 start\" \"gulp\"",
  11. "monitor": "pm2 monit",
  12. "reload-env": "pm2 reload --update-env ecosystem.config.js",
  13. "stop": "pm2 stop ecosystem.config.js",
  14. "delete": "pm2 delete ecosystem.config.js"
  15. },
  16. "dependencies": {
  17. "async-middleware": "^1.2.1",
  18. "axios": "^0.27.2",
  19. "bluebird": "^3.5.3",
  20. "body-parser": "^1.18.3",
  21. "browser-sync": "^2.26.3",
  22. "concurrently": "^4.1.0",
  23. "cookie-parser": "~1.4.3",
  24. "debug": "~2.6.9",
  25. "del": "^3.0.0",
  26. "dotenv": "^6.2.0",
  27. "ejs": "~2.5.7",
  28. "express": "~4.16.0",
  29. "express-ejs-layouts": "^2.5.0",
  30. "express-session": "^1.15.6",
  31. "gulp": "^4.0.0",
  32. "gulp-autoprefixer": "^5.0.0",
  33. "gulp-cache": "^1.0.2",
  34. "gulp-clean-css": "^3.9.4",
  35. "gulp-csscomb": "^3.0.8",
  36. "gulp-cssnano": "^2.1.3",
  37. "gulp-html-prettify": "0.0.1",
  38. "gulp-imagemin": "^4.1.0",
  39. "gulp-npm-dist": "^1.0.1",
  40. "gulp-postcss": "^7.0.1",
  41. "gulp-rename": "^1.2.2",
  42. "gulp-run": "^1.7.1",
  43. "gulp-sass": "^5.1.0",
  44. "gulp-sourcemaps": "^2.6.5",
  45. "gulp-uglify": "^3.0.0",
  46. "gulp-useref-plus": "0.0.8",
  47. "gulp-util": "^3.0.8",
  48. "gulp-wait": "0.0.2",
  49. "http-errors": "~1.6.2",
  50. "http-proxy-middleware": "^2.0.6",
  51. "joi": "^14.3.1",
  52. "passport": "^0.4.0",
  53. "passport-local": "^1.0.0",
  54. "pg": "^7.8.0",
  55. "pino": "^5.11.1",
  56. "pm2": "^3.2.9",
  57. "postcss-flexbugs-fixes": "^3.3.1"
  58. },
  59. "devDependencies": {
  60. "eslint": "^5.13.0",
  61. "eslint-config": "^0.3.0",
  62. "eslint-config-airbnb": "^17.1.0",
  63. "eslint-config-prettier": "^4.0.0",
  64. "eslint-plugin-import": "^2.16.0",
  65. "eslint-plugin-prettier": "^3.0.1",
  66. "husky": "^1.3.1",
  67. "lint-staged": "^8.1.3",
  68. "pino-pretty": "^2.5.0",
  69. "prettier": "^1.16.4",
  70. "pretty-quick": "^1.10.0",
  71. "stylelint": "^9.10.1",
  72. "stylelint-config-standard": "^18.2.0"
  73. },
  74. "lint-staged": {
  75. "src/**/*.{js,jsx}": [
  76. "eslint --fix",
  77. "prettier --config .prettierrc --write",
  78. "git add"
  79. ],
  80. "packages/**/*.{js,jsx}": [
  81. "eslint --fix",
  82. "prettier --config .prettierrc --write",
  83. "git add"
  84. ]
  85. },
  86. "husky": {
  87. "hooks": {
  88. "pre-commit": "lint-staged"
  89. }
  90. }
  91. }