-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
26 lines (26 loc) · 1.07 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
{
"private": true,
"scripts": {
"local": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --hide-modules --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "npm run local",
"prod": "npm run production",
"watch": "npm run local -- --watch"
},
"devDependencies": {
"cross-env": "^3.2.3",
"laravel-mix": "^4.0.0",
"laravel-mix-jigsaw": "^1.3.0",
"laravel-mix-purgecss": "^5.0.0",
"laravel-mix-tailwind": "^0.1.0",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^7.1.0",
"tailwindcss": "^1.6.1",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"alpinejs": "^2.5.0"
}
}