generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
29 lines (29 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
26
27
28
29
{
"private": true,
"type": "module",
"scripts": {
"dev:styles": "npx tailwindcss -i resources/css/filament-daterangepicker.css -o dist/filament-daterangepicker.css --postcss --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "npx tailwindcss -i resources/css/filament-daterangepicker.css -o dist/filament-daterangepicker.css --postcss --minify",
"build:scripts": "node bin/build.js",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*",
"prettier": "npx prettier --write ."
},
"devDependencies": {
"@awcodes/filament-plugin-purge": "^1.1.2",
"autoprefixer": "^10.4.19",
"esbuild": "^0.19.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"postcss-import": "^15.1.0",
"prettier-plugin-blade": "^1.5.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.4.7"
},
"dependencies": {
"jquery": "^3.7.1",
"moment": "^2.30.1",
"postcss-nesting": "^13.0.0"
}
}