v3.0.0/package.json

113 lines
2.6 KiB
JSON
Raw Normal View History

2018-09-16 05:54:54 +02:00
{
"name": "lolisafe",
"version": "4.0.0",
"description": "Blazing fast file uploader and bunker written in node! 🚀",
2019-02-18 15:36:35 +01:00
"license": "MIT",
2018-09-16 05:54:54 +02:00
"author": {
"name": "Pitu",
"email": "heyitspitu@gmail.com",
"url": "https://github.com/Pitu"
},
"main": "src/_scripts/start.js",
"scripts": {
"setup": "node src/setup.js && yarn build && yarn migrate && yarn seed",
2018-09-19 09:45:50 +02:00
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node src/api/structures/Server",
"dev": "nuxt",
2019-02-21 15:49:29 +01:00
"migrate": "yarn knex migrate:latest",
"seed": "yarn knex seed:run",
"api": "node src/api/structures/Server",
"update": "git pull && yarn install && yarn migrate && yarn build && yarn restart",
"restart": "pm2 restart lolisafe-api && pm2 restart lolisafe-website"
2018-09-16 05:54:54 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/WeebDev/lolisafe"
},
"bugs": {
"url": "https://github.com/WeebDev/lolisafe/issues"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
2019-03-28 16:35:22 +01:00
"@nuxtjs/axios": "^5.4.1",
2019-02-21 16:52:35 +01:00
"adm-zip": "^0.4.13",
2020-04-10 16:40:22 +02:00
"bcrypt": "^4.0.1",
2019-02-21 16:52:35 +01:00
"body-parser": "^1.18.3",
2020-06-29 15:02:36 +02:00
"buefy": "^0.8.20",
2018-09-16 05:54:54 +02:00
"busboy": "^0.2.14",
"chalk": "^2.4.1",
"compression": "^1.7.2",
"cookie-universal-nuxt": "^2.0.14",
2019-02-21 16:52:35 +01:00
"cors": "^2.8.5",
2019-02-19 15:52:24 +01:00
"dotenv": "^6.2.0",
2019-02-21 16:52:35 +01:00
"dumper.js": "^1.3.1",
"express": "^4.16.4",
"express-rate-limit": "^3.4.0",
"ffmpeg-generate-video-preview": "^1.0.3",
2019-03-01 18:45:31 +01:00
"file-saver": "^2.0.1",
2019-03-29 04:28:16 +01:00
"flexsearch": "^0.6.22",
2018-09-16 05:54:54 +02:00
"fluent-ffmpeg": "^2.1.2",
2019-02-21 16:52:35 +01:00
"fs-jetpack": "^2.2.2",
"helmet": "^3.15.1",
2018-09-16 10:25:46 +02:00
"imagesloaded": "^4.1.4",
2019-02-21 16:52:35 +01:00
"jsonwebtoken": "^8.5.0",
"knex": "^0.16.3",
"moment": "^2.24.0",
"multer": "^1.4.1",
"mysql": "^2.16.0",
2020-04-10 16:40:22 +02:00
"nuxt": "2.12.2",
2019-02-21 16:52:35 +01:00
"nuxt-dropzone": "^0.2.8",
2018-09-16 05:54:54 +02:00
"one-liner": "^1.3.0",
"path": "^0.12.7",
2019-02-21 16:52:35 +01:00
"pg": "^7.8.1",
2019-02-19 03:29:22 +01:00
"qoa": "^0.2.0",
2018-09-16 05:54:54 +02:00
"randomstring": "^1.1.5",
2018-09-19 09:45:50 +02:00
"serve-static": "^1.13.2",
2020-04-10 16:40:22 +02:00
"sharp": "^0.25.2",
"sqlite3": "^4.0.6",
2019-03-14 15:13:51 +01:00
"uuid": "^3.3.2",
2019-02-21 16:52:35 +01:00
"v-clipboard": "^2.2.1",
"vue-axios": "^2.1.4",
2019-02-18 16:06:50 +01:00
"vue-isyourpasswordsafe": "^1.0.2",
2019-02-21 16:52:35 +01:00
"vue-plyr": "^5.1.0",
2018-09-16 05:54:54 +02:00
"vue-timeago": "^3.4.4",
2019-10-01 19:20:37 +02:00
"vue2-transitions": "^0.2.3",
"vuebar": "^0.0.20"
2018-09-16 05:54:54 +02:00
},
"devDependencies": {
2019-02-18 16:06:50 +01:00
"autoprefixer": "^9.4.7",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
2018-09-19 09:45:50 +02:00
"eslint-config-aqua": "^4.4.1",
2019-02-18 16:06:50 +01:00
"eslint-plugin-vue": "^5.2.1",
"node-sass": "^4.11.0",
"nodemon": "^1.19.3",
2019-02-19 03:29:22 +01:00
"postcss-css-variables": "^0.11.0",
2018-09-16 05:54:54 +02:00
"postcss-nested": "^3.0.0",
2019-02-26 14:25:19 +01:00
"sass-loader": "^7.1.0"
2018-09-16 05:54:54 +02:00
},
"eslintConfig": {
"extends": [
2018-09-19 09:45:50 +02:00
"aqua/vue",
"aqua/node"
2018-09-16 05:54:54 +02:00
],
"rules": {
2018-09-19 09:45:50 +02:00
"vue/attribute-hyphenation": 0,
"quote-props": 0
2018-09-16 05:54:54 +02:00
}
},
"keywords": [
"lolisafe",
"upload",
"uploader",
"file",
"vue",
2019-02-18 15:36:35 +01:00
"ssr",
"file uploader",
"images"
2018-09-16 05:54:54 +02:00
]
}