package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 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.11",
  34. "axios": "^0.18.0",
  35. "bcrypt": "^2.0.1",
  36. "body-parser": "^1.18.2",
  37. "buefy": "0.6.3",
  38. "busboy": "^0.2.14",
  39. "chalk": "^2.4.1",
  40. "compression": "^1.7.2",
  41. "cors": "^2.8.4",
  42. "dotenv": "^6.2.0",
  43. "dumper.js": "^1.1.1",
  44. "express": "^4.16.3",
  45. "express-rate-limit": "^2.11.0",
  46. "fluent-ffmpeg": "^2.1.2",
  47. "fs-jetpack": "^1.3.0",
  48. "fuse.js": "^3.2.0",
  49. "helmet": "^3.12.0",
  50. "imagesloaded": "^4.1.4",
  51. "jsonwebtoken": "^8.2.1",
  52. "knex": "^0.14.6",
  53. "moment": "^2.22.1",
  54. "multer": "^1.3.0",
  55. "nuxt": "^2.4.3",
  56. "nuxt-dropzone": "^0.2.7",
  57. "one-liner": "^1.3.0",
  58. "path": "^0.12.7",
  59. "pg": "^7.4.3",
  60. "qoa": "^0.2.0",
  61. "randomstring": "^1.1.5",
  62. "serve-static": "^1.13.2",
  63. "sharp": "^0.20.3",
  64. "sqlite3": "^4.0.6",
  65. "v-clipboard": "^1.0.4",
  66. "vue-analytics": "^5.16.2",
  67. "vue-axios": "^2.0.2",
  68. "vue-isyourpasswordsafe": "^1.0.2",
  69. "vue-plyr": "^2.1.1",
  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. "ream": "^3.2.7",
  84. "sass-loader": "^7.1.0",
  85. "vue-eslint-parser": "^2.0.3"
  86. },
  87. "eslintConfig": {
  88. "extends": [
  89. "aqua/vue",
  90. "aqua/node"
  91. ],
  92. "rules": {
  93. "vue/attribute-hyphenation": 0,
  94. "quote-props": 0
  95. }
  96. },
  97. "keywords": [
  98. "lolisafe",
  99. "upload",
  100. "uploader",
  101. "file",
  102. "vue",
  103. "ssr",
  104. "file uploader",
  105. "images"
  106. ]
  107. }