|
1 | 1 | {
|
2 |
| - "name": "qaravel", |
3 |
| - "version": "2.0.0", |
4 |
| - "description": "Qaravel is a Combination of Laravel and Quasar", |
5 |
| - "productName": "Qaravel", |
6 |
| - "author": "DepokSarkar <[email protected]>", |
7 |
| - "private": true, |
8 |
| - "config": { |
9 |
| - "app": { |
10 |
| - "path": "frontend" |
| 2 | + "name": "qaravel", |
| 3 | + "version": "2.0.0", |
| 4 | + "description": "Qaravel is a Combination of Laravel and Quasar", |
| 5 | + "productName": "Qaravel", |
| 6 | + "author": "DepokSarkar <[email protected]>", |
| 7 | + "private": true, |
| 8 | + "config": { |
| 9 | + "app": { |
| 10 | + "path": "frontend" |
| 11 | + }, |
| 12 | + "ssh": { |
| 13 | + "user": "example.com", |
| 14 | + "server": "ssh.hosting-provider.com", |
| 15 | + "folders": { |
| 16 | + "live": "~/app", |
| 17 | + "alpha": "~/alpha" |
| 18 | + } |
| 19 | + } |
11 | 20 | },
|
12 |
| - "ssh": { |
13 |
| - "user": "example.com", |
14 |
| - "server": "ssh.hosting-provider.com", |
15 |
| - "folders": { |
16 |
| - "live": "~/app", |
17 |
| - "alpha": "~/alpha" |
18 |
| - } |
| 21 | + "scripts": { |
| 22 | + "dev": "vite", |
| 23 | + "build": "vite build", |
| 24 | + "mix:dev": "yarn build:clean && mix", |
| 25 | + "mix:prod": "yarn build:clean && mix --production", |
| 26 | + "commit": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Commiting to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\"", |
| 27 | + "push:git": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Pushing to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\" && git push origin \"$branch\"", |
| 28 | + "push:live": "clear && echo Starting Live Push && yarn build:prod && yarn sync:live && echo Finished Live Push", |
| 29 | + "push:alpha": "clear && echo Starting Alpha Push && yarn build:alpha && yarn sync:alpha && echo Finished Alpha Push ", |
| 30 | + "build:prod": "yarn --cwd $npm_package_config_app_path build:prod && yarn mix:prod", |
| 31 | + "build:alpha": "yarn --cwd $npm_package_config_app_path build:alpha && yarn mix:dev", |
| 32 | + "build:dev": "yarn --cwd $npm_package_config_app_path build:dev && yarn mix:dev", |
| 33 | + "build:icons": "yarn --cwd $npm_package_config_app_path icons", |
| 34 | + "make:ssl": "yarn --cwd $npm_package_config_app_path ssl", |
| 35 | + "app": "yarn --cwd $npm_package_config_app_path $type $package", |
| 36 | + "quasar": "yarn --cwd $npm_package_config_app_path quasar $cmd", |
| 37 | + "fresh": "php artisan migrate:fresh && php artisan migrate --path=database/migrations/imports && php artisan db:seed", |
| 38 | + "start:web": "yarn && quasar dev", |
| 39 | + "start:queue": "php artisan queue:work --timeout=36000 --stop-when-empty", |
| 40 | + "sync:live": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_live && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_live && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Live File Sync", |
| 41 | + "sync:alpha": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_alpha && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_alpha && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Alpha File Sync", |
| 42 | + "build:clean": "echo Cleaning old build && del-cli public/assets public/img public/pdfjs public/mix-manifest.json", |
| 43 | + "lint": "eslint --ext .js,.vue ./", |
| 44 | + "format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore", |
| 45 | + "test": "echo \"No test specified\" && exit 0" |
| 46 | + }, |
| 47 | + "dependencies": { |
| 48 | + "@coders-tm/vue-number-format": "^3.1.2", |
| 49 | + "@originjs/vite-plugin-require-context": "^1.0.9", |
| 50 | + "@quasar/extras": "^1.0.0", |
| 51 | + "axios": "^0.27", |
| 52 | + "lodash": "^4.17.19", |
| 53 | + "pinia": "^2.0.11", |
| 54 | + "quasar": "^2.6.0", |
| 55 | + "vue": "^3.0.0", |
| 56 | + "vue-i18n": "^9.0.0", |
| 57 | + "vue-router": "^4.0.0" |
| 58 | + }, |
| 59 | + "devDependencies": { |
| 60 | + "@intlify/vite-plugin-vue-i18n": "^3.3.1", |
| 61 | + "@originjs/vite-plugin-require-context": "^1.0.9", |
| 62 | + "@quasar/app-vite": "^1.0.0", |
| 63 | + "autoprefixer": "^10.4.2", |
| 64 | + "cross-env": "^7.0.3", |
| 65 | + "del-cli": "^5.0.0", |
| 66 | + "dotenv": "^16.0.1", |
| 67 | + "eslint": "^8.10.0", |
| 68 | + "eslint-config-prettier": "^8.1.0", |
| 69 | + "eslint-plugin-vue": "^9.0.0", |
| 70 | + "laravel-mix": "^6.0.49", |
| 71 | + "laravel-vite-plugin": "^0.5.0", |
| 72 | + "postcss": "^8.1.14", |
| 73 | + "prettier": "^2.5.1", |
| 74 | + "vite": "^3.0.0" |
| 75 | + }, |
| 76 | + "engines": { |
| 77 | + "node": "^18 || ^16 || ^14.19", |
| 78 | + "npm": ">= 6.13.4", |
| 79 | + "yarn": ">= 1.21.1" |
19 | 80 | }
|
20 |
| - }, |
21 |
| - "scripts": { |
22 |
| - "dev": "vite", |
23 |
| - "build": "vite build", |
24 |
| - "mix:dev": "yarn build:clean && mix", |
25 |
| - "mix:prod": "yarn build:clean && mix --production", |
26 |
| - "commit": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Commiting to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\"", |
27 |
| - "push:git": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Pushing to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\" && git push origin \"$branch\"", |
28 |
| - "push:live": "clear && echo Starting Live Push && yarn build:prod && yarn sync:live && echo Finished Live Push", |
29 |
| - "push:alpha": "clear && echo Starting Alpha Push && yarn build:alpha && yarn sync:alpha && echo Finished Alpha Push ", |
30 |
| - "build:prod": "yarn --cwd $npm_package_config_app_path build:prod && yarn mix:prod", |
31 |
| - "build:alpha": "yarn --cwd $npm_package_config_app_path build:alpha && yarn mix:dev", |
32 |
| - "build:dev": "yarn --cwd $npm_package_config_app_path build:dev && yarn mix:dev", |
33 |
| - "build:icons": "yarn --cwd $npm_package_config_app_path icons", |
34 |
| - "make:ssl": "yarn --cwd $npm_package_config_app_path ssl", |
35 |
| - "app": "yarn --cwd $npm_package_config_app_path $type $package", |
36 |
| - "quasar": "yarn --cwd $npm_package_config_app_path quasar $cmd", |
37 |
| - "fresh": "php artisan migrate:fresh && php artisan migrate --path=database/migrations/imports && php artisan db:seed", |
38 |
| - "start:web": "yarn && quasar dev", |
39 |
| - "start:queue": "php artisan queue:work --timeout=36000 --stop-when-empty", |
40 |
| - "sync:live": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_live && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_live && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Live File Sync", |
41 |
| - "sync:alpha": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_alpha && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_alpha && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Alpha File Sync", |
42 |
| - "build:clean": "echo Cleaning old build && del-cli public/assets public/img public/pdfjs public/mix-manifest.json", |
43 |
| - "lint": "eslint --ext .js,.vue ./", |
44 |
| - "format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore", |
45 |
| - "test": "echo \"No test specified\" && exit 0" |
46 |
| - }, |
47 |
| - "dependencies": { |
48 |
| - "@coders-tm/vue-number-format": "^3.1.2", |
49 |
| - "@originjs/vite-plugin-require-context": "^1.0.9", |
50 |
| - "@quasar/extras": "^1.0.0", |
51 |
| - "axios": "^0.27", |
52 |
| - "lodash": "^4.17.19", |
53 |
| - "pinia": "^2.0.11", |
54 |
| - "quasar": "^2.6.0", |
55 |
| - "vue": "^3.0.0", |
56 |
| - "vue-i18n": "^9.0.0", |
57 |
| - "vue-router": "^4.0.0" |
58 |
| - }, |
59 |
| - "devDependencies": { |
60 |
| - "@intlify/vite-plugin-vue-i18n": "^3.3.1", |
61 |
| - "@originjs/vite-plugin-require-context": "^1.0.9", |
62 |
| - "@quasar/app-vite": "^1.0.0", |
63 |
| - "autoprefixer": "^10.4.2", |
64 |
| - "cross-env": "^7.0.3", |
65 |
| - "del-cli": "^5.0.0", |
66 |
| - "dotenv": "^16.0.1", |
67 |
| - "eslint": "^8.10.0", |
68 |
| - "eslint-config-prettier": "^8.1.0", |
69 |
| - "eslint-plugin-vue": "^9.0.0", |
70 |
| - "laravel-mix": "^6.0.49", |
71 |
| - "laravel-vite-plugin": "^0.5.0", |
72 |
| - "postcss": "^8.1.14", |
73 |
| - "prettier": "^2.5.1", |
74 |
| - "vite": "^3.0.0" |
75 |
| - }, |
76 |
| - "engines": { |
77 |
| - "node": "^18 || ^16 || ^14.19", |
78 |
| - "npm": ">= 6.13.4", |
79 |
| - "yarn": ">= 1.21.1" |
80 |
| - } |
81 | 81 | }
|
0 commit comments