generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 766 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"private": true,
"type": "module",
"scripts": {
"dev:styles": "postcss resources/css/index.css -o resources/dist/filament-auto-logout.css --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "postcss resources/css/index.css -o resources/dist/filament-auto-logout.css --minify",
"build:scripts": "node bin/build.js",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"cssnano": "^6.0.1",
"postcss": "^8.4.27",
"postcss-import":"^16.1.1",
"postcss-cli": "^10.1.0",
"postcss-nesting": "^13.0.0",
"esbuild": "^0.19.2",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4.1.17"
}
}