-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 1.11 KB
/
package.json
File metadata and controls
31 lines (30 loc) · 1.11 KB
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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"setup:front": "cd FrontEndApp && yarn",
"setup:back": "composer install",
"setup": "yarn setup:back && yarn setup:front && yarn",
"production": "mix --production",
"@comment front:serve": "This will serve the frontend",
"front:serve": "cd FrontEndApp && yarn dev",
"front:build": "cd FrontEndApp && yarn build",
"@comment serve": "This is when in development mode only.",
"serve": "concurrently \"php -S localhost:8000 -t public\" \"yarn front:serve\"",
"@comment deploy": "This is when deploying in the server",
"deploy": "yarn setup && yarn front:build"
},
"devDependencies": {
"axios": "^0.21",
"concurrently": "^6.4.0",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"postcss": "^8.1.14"
},
"dependencies": {}
}