package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "lolisafe",
  3. "version": "4.0.0",
  4. "description": "Blazing fast file uploader and bunker written in node! 🚀",
  5. "license": "UNLICENSED",
  6. "author": {
  7. "name": "Pitu",
  8. "email": "heyitspitu@gmail.com",
  9. "url": "https://github.com/Pitu"
  10. },
  11. "main": "src/_scripts/start.js",
  12. "scripts": {
  13. "api": "nodemon src/start api",
  14. "site": "node src/start site",
  15. "build": "ream build",
  16. "start": "cross-env NODE_ENV=production node src/start"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/WeebDev/lolisafe"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/WeebDev/lolisafe/issues"
  24. },
  25. "engines": {
  26. "node": ">=8.0.0"
  27. },
  28. "dependencies": {
  29. "adm-zip": "^0.4.11",
  30. "axios": "^0.18.0",
  31. "bcrypt": "^2.0.1",
  32. "body-parser": "^1.18.2",
  33. "buefy": "0.6.3",
  34. "busboy": "^0.2.14",
  35. "chalk": "^2.4.1",
  36. "compression": "^1.7.2",
  37. "cors": "^2.8.4",
  38. "dumper.js": "^1.1.1",
  39. "express": "^4.16.3",
  40. "express-rate-limit": "^2.11.0",
  41. "fluent-ffmpeg": "^2.1.2",
  42. "fs-jetpack": "^1.3.0",
  43. "fuse.js": "^3.2.0",
  44. "helmet": "^3.12.0",
  45. "imagesloaded": "^4.1.4",
  46. "jsonwebtoken": "^8.2.1",
  47. "knex": "^0.14.6",
  48. "moment": "^2.22.1",
  49. "multer": "^1.3.0",
  50. "nuxt-dropzone": "^0.2.7",
  51. "one-liner": "^1.3.0",
  52. "path": "^0.12.7",
  53. "pg": "^7.4.3",
  54. "randomstring": "^1.1.5",
  55. "sharp": "^0.20.3",
  56. "v-clipboard": "^1.0.4",
  57. "vue-analytics": "^5.9.1",
  58. "vue-axios": "^2.0.2",
  59. "vue-isyourpasswordsafe": "^1.0.1",
  60. "vue-lazyload": "^1.2.2",
  61. "vue-plyr": "^2.1.1",
  62. "vue-timeago": "^3.4.4",
  63. "vuex": "^3.0.1"
  64. },
  65. "devDependencies": {
  66. "babel-eslint": "^8.2.2",
  67. "cross-env": "^5.1.4",
  68. "eslint": "^4.19.1",
  69. "eslint-config-aqua": "^3.0.0",
  70. "eslint-plugin-vue": "^4.4.0",
  71. "node-sass": "^4.7.2",
  72. "nodemon": "^1.17.5",
  73. "postcss-nested": "^3.0.0",
  74. "ream": "^3.2.7",
  75. "sass-loader": "^6.0.7",
  76. "vue-eslint-parser": "^2.0.3"
  77. },
  78. "eslintConfig": {
  79. "parser": "vue-eslint-parser",
  80. "parserOptions": {
  81. "parser": "babel-eslint"
  82. },
  83. "extends": [
  84. "plugin:vue/recommended",
  85. "aqua"
  86. ],
  87. "env": {
  88. "browser": true,
  89. "node": true
  90. },
  91. "rules": {
  92. "func-names": 0,
  93. "capitalized-comments": 0,
  94. "max-len": 0,
  95. "id-length": 0,
  96. "no-warning-comments": 0,
  97. "vue/html-indent": [
  98. "error",
  99. "tab"
  100. ],
  101. "vue/max-attributes-per-line": [
  102. 2,
  103. {
  104. "singleline": 1,
  105. "multiline": {
  106. "max": 1,
  107. "allowFirstLine": true
  108. }
  109. }
  110. ],
  111. "vue/attribute-hyphenation": 0
  112. }
  113. },
  114. "keywords": [
  115. "lolisafe",
  116. "upload",
  117. "uploader",
  118. "file",
  119. "vue",
  120. "ssr"
  121. ]
  122. }