package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. "axios": "^0.18.0",
  30. "bcrypt": "^2.0.1",
  31. "body-parser": "^1.18.2",
  32. "buefy": "0.6.3",
  33. "busboy": "^0.2.14",
  34. "chalk": "^2.4.1",
  35. "compression": "^1.7.2",
  36. "cors": "^2.8.4",
  37. "dumper.js": "^1.1.1",
  38. "express": "^4.16.3",
  39. "express-rate-limit": "^2.11.0",
  40. "fluent-ffmpeg": "^2.1.2",
  41. "fs-jetpack": "^1.3.0",
  42. "fuse.js": "^3.2.0",
  43. "helmet": "^3.12.0",
  44. "jsonwebtoken": "^8.2.1",
  45. "knex": "^0.14.6",
  46. "moment": "^2.22.1",
  47. "multer": "^1.3.0",
  48. "nuxt-dropzone": "^0.2.7",
  49. "one-liner": "^1.3.0",
  50. "path": "^0.12.7",
  51. "randomstring": "^1.1.5",
  52. "sharp": "^0.20.3",
  53. "sqlite3": "^4.0.0",
  54. "v-clipboard": "^1.0.4",
  55. "vue-analytics": "^5.9.1",
  56. "vue-axios": "^2.0.2",
  57. "vue-isyourpasswordsafe": "^1.0.1",
  58. "vue-lazyload": "^1.2.2",
  59. "vue-plyr": "^2.1.1",
  60. "vue-timeago": "^3.4.4",
  61. "vuex": "^3.0.1"
  62. },
  63. "devDependencies": {
  64. "babel-eslint": "^8.2.2",
  65. "cross-env": "^5.1.4",
  66. "eslint": "^4.19.1",
  67. "eslint-config-aqua": "^3.0.0",
  68. "eslint-plugin-vue": "^4.4.0",
  69. "node-sass": "^4.7.2",
  70. "nodemon": "^1.17.5",
  71. "postcss-nested": "^3.0.0",
  72. "ream": "^3.2.7",
  73. "sass-loader": "^6.0.7",
  74. "vue-eslint-parser": "^2.0.3"
  75. },
  76. "eslintConfig": {
  77. "parser": "vue-eslint-parser",
  78. "parserOptions": {
  79. "parser": "babel-eslint"
  80. },
  81. "extends": [
  82. "plugin:vue/recommended",
  83. "aqua"
  84. ],
  85. "env": {
  86. "browser": true,
  87. "node": true
  88. },
  89. "rules": {
  90. "func-names": 0,
  91. "capitalized-comments": 0,
  92. "max-len": 0,
  93. "id-length": 0,
  94. "no-warning-comments": 0,
  95. "vue/html-indent": [
  96. "error",
  97. "tab"
  98. ],
  99. "vue/max-attributes-per-line": [
  100. 2,
  101. {
  102. "singleline": 1,
  103. "multiline": {
  104. "max": 1,
  105. "allowFirstLine": true
  106. }
  107. }
  108. ],
  109. "vue/attribute-hyphenation": 0
  110. }
  111. },
  112. "keywords": [
  113. "lolisafe",
  114. "upload",
  115. "uploader",
  116. "file",
  117. "vue",
  118. "ssr"
  119. ]
  120. }