-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
20 lines (20 loc) · 966 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"private": true,
"scripts": {
"dev:css": "npx tailwindcss -i resources/css/plugin.css -o resources/dist/filament-sticky-header.css --postcss --watch",
"dev:js": "esbuild resources/js/plugin.js --bundle --sourcemap=inline --target=es2016 --outfile=resources/dist/filament-sticky-header.js --watch",
"build:css": "npx tailwindcss -i resources/css/plugin.css -o resources/dist/filament-sticky-header.css --postcss --minify",
"build:js": "esbuild resources/js/plugin.js --bundle --minify --target=es2016 --outfile=resources/dist/filament-sticky-header.js",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.7",
"esbuild": "^0.17.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.6"
}
}