-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
25 lines (25 loc) · 1.06 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
{
"private": true,
"scripts": {
"local": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --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": {
"autoprefixer": "^10.3.7",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"laravel-mix": "^6.0.34",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"tailwindcss": "^2.2.17",
"cross-env": "^7.0.3",
"laravel-mix-jigsaw": "^2.0.0"
},
"dependencies": {
"alpinejs": "^3.4.2"
}
}