package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "lolisafe",
  3. "version": "4.0.0",
  4. "description": "Blazing fast file uploader and bunker written in node! 🚀",
  5. "license": "MIT",
  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. "setup": "yarn build && node src/wizard.js",
  14. "dev": "nuxt",
  15. "build": "nuxt build",
  16. "migrate": "yarn knex migrate:latest",
  17. "seed": "yarn knex seed:run",
  18. "api": "node src/api/structures/Server",
  19. "site": "cross-env NODE_ENV=production nuxt start",
  20. "update": "git pull && yarn install && yarn migrate && yarn build"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/WeebDev/lolisafe"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/WeebDev/lolisafe/issues"
  28. },
  29. "engines": {
  30. "node": ">=8.0.0"
  31. },
  32. "dependencies": {
  33. "adm-zip": "^0.4.13",
  34. "axios": "^0.18.0",
  35. "bcrypt": "^3.0.4",
  36. "body-parser": "^1.18.3",
  37. "buefy": "0.6.3",
  38. "busboy": "^0.2.14",
  39. "chalk": "^2.4.1",
  40. "compression": "^1.7.2",
  41. "cors": "^2.8.5",
  42. "dotenv": "^6.2.0",
  43. "dumper.js": "^1.3.1",
  44. "express": "^4.16.4",
  45. "express-rate-limit": "^3.4.0",
  46. "file-saver": "^2.0.1",
  47. "fluent-ffmpeg": "^2.1.2",
  48. "fs-jetpack": "^2.2.2",
  49. "fuse.js": "^3.4.0",
  50. "helmet": "^3.15.1",
  51. "imagesloaded": "^4.1.4",
  52. "jsonwebtoken": "^8.5.0",
  53. "knex": "^0.16.3",
  54. "moment": "^2.24.0",
  55. "multer": "^1.4.1",
  56. "nuxt": "^2.4.3",
  57. "nuxt-dropzone": "^0.2.8",
  58. "one-liner": "^1.3.0",
  59. "path": "^0.12.7",
  60. "pg": "^7.8.1",
  61. "qoa": "^0.2.0",
  62. "randomstring": "^1.1.5",
  63. "serve-static": "^1.13.2",
  64. "sharp": "^0.21.3",
  65. "sqlite3": "^4.0.6",
  66. "v-clipboard": "^2.2.1",
  67. "vue-axios": "^2.1.4",
  68. "vue-isyourpasswordsafe": "^1.0.2",
  69. "vue-plyr": "^5.1.0",
  70. "vue-timeago": "^3.4.4",
  71. "vue2-transitions": "^0.2.3"
  72. },
  73. "devDependencies": {
  74. "autoprefixer": "^9.4.7",
  75. "babel-eslint": "^10.0.1",
  76. "cross-env": "^5.2.0",
  77. "eslint": "^5.13.0",
  78. "eslint-config-aqua": "^4.4.1",
  79. "eslint-plugin-vue": "^5.2.1",
  80. "node-sass": "^4.11.0",
  81. "postcss-css-variables": "^0.11.0",
  82. "postcss-nested": "^3.0.0",
  83. "sass-loader": "^7.1.0"
  84. },
  85. "eslintConfig": {
  86. "extends": [
  87. "aqua/vue",
  88. "aqua/node"
  89. ],
  90. "rules": {
  91. "vue/attribute-hyphenation": 0,
  92. "quote-props": 0
  93. }
  94. },
  95. "keywords": [
  96. "lolisafe",
  97. "upload",
  98. "uploader",
  99. "file",
  100. "vue",
  101. "ssr",
  102. "file uploader",
  103. "images"
  104. ]
  105. }