diff options
| author | iCrawl <[email protected]> | 2020-12-24 20:16:00 +0100 |
|---|---|---|
| committer | iCrawl <[email protected]> | 2020-12-26 21:00:53 +0100 |
| commit | 5d2d46d8dca912614d6893a9f3ff30a487e76a77 (patch) | |
| tree | 7d45769f3c88aa6346483abcaa4370f67fced603 /package.json | |
| parent | Merge pull request #230 from WeebDev/fix/chunk-uploads (diff) | |
| download | host.fuwn.me-5d2d46d8dca912614d6893a9f3ff30a487e76a77.tar.xz host.fuwn.me-5d2d46d8dca912614d6893a9f3ff30a487e76a77.zip | |
add docker support
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package.json b/package.json index d4c509c..c417bcc 100644 --- a/package.json +++ b/package.json @@ -9,15 +9,15 @@ "url": "https://github.com/Pitu" }, "scripts": { - "setup": "node src/setup.js && yarn build && yarn migrate && yarn seed", + "setup": "node src/setup.js && npm run migrate && npm run seed && npm run build", "build": "nuxt build", "start": "cross-env NODE_ENV=production node src/api/structures/Server", "dev": "nuxt", - "migrate": "yarn knex migrate:latest", - "seed": "yarn knex seed:run", + "migrate": "knex migrate:latest", + "seed": "knex seed:run", "api": "node src/api/structures/Server", - "update": "git pull && yarn install && yarn migrate && yarn build && yarn restart", - "restart": "pm2 restart chibisafe" + "update": "git pull && npm install && npm run migrate && npm run build && npm run restart", + "restart": "pm2 restart lolisafe" }, "repository": { "type": "git", @@ -33,7 +33,7 @@ "@mdi/font": "^5.3.45", "@nuxtjs/axios": "^5.4.1", "adm-zip": "^0.4.13", - "bcrypt": "^4.0.1", + "bcrypt": "^5.0.0", "body-parser": "^1.18.3", "buefy": "^0.9.4", "busboy": "^0.2.14", @@ -67,8 +67,8 @@ "rotating-file-stream": "^2.1.3", "search-query-parser": "^1.5.5", "serve-static": "^1.13.2", - "sharp": "^0.25.2", - "sqlite3": "^4.0.6", + "sharp": "^0.27.0", + "sqlite3": "^5.0.0", "uuid": "^3.3.2", "v-clipboard": "^2.2.1", "vue-axios": "^2.1.4", @@ -86,11 +86,11 @@ "eslint-config-aqua": "^7.3.0", "eslint-import-resolver-nuxt": "^1.0.1", "eslint-plugin-vue": "^5.2.1", - "node-sass": "^4.11.0", + "node-sass": "^5.0.0", "nodemon": "^1.19.3", "postcss-css-variables": "^0.11.0", "postcss-nested": "^3.0.0", - "sass-loader": "^7.1.0" + "sass-loader": "^10.1.0" }, "eslintConfig": { "extends": [ |