-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"private": true,
"type": "module",
"scripts": {
"init": "npm install && composer install && node scripts/create-env-file.js && php artisan migrate && php artisan db:seed",
"reset-db": "php artisan migrate:fresh && php artisan db:seed",
"start": "conc -c auto -p \"[{time} {name}]\" npm:start:*",
"start:reverb": "php artisan Reverb:start",
"start:serve": "php artisan serve",
"start:queue-default": "php artisan queue:work",
"start:queue-mails": "php artisan queue:work --queue=mails",
"start:queue-message_broadcast": "php artisan queue:work --queue=message_broadcast",
"start:vite": "vite",
"build:vite": "vite build",
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"concurrently": "^9.1.0",
"laravel-echo": "^1.16.1",
"laravel-vite-plugin": "^1.0.5",
"pusher-js": "^8.4.0-rc2",
"shelljs": "^0.8.5",
"vite": "^5.4.0"
},
"dependencies": {
"cropperjs": "^1.6.2",
"docx": "^9.0.3",
"highlight.js": "^11.10.0",
"jquery": "^3.7.1",
"jspdf": "^2.5.2",
"katex": "^0.16.15",
"laravel-echo": "^1.16.1",
"markdown-it": "^14.1.0",
"pusher-js": "^8.4.0-rc2"
}
}