forked from rmsramos/activitylog
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·23 lines (23 loc) · 925 Bytes
/
package.json
File metadata and controls
executable file
·23 lines (23 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": true,
"type": "module",
"scripts": {
"dev:styles": "npx tailwindcss -i resources/css/plugin.css -o resources/dist/activitylog.css --postcss --watch",
"build:styles": "npx tailwindcss -i resources/css/plugin.css -o resources/dist/activitylog.css --postcss --minify && npm run purge",
"purge": "filament-purge -i resources/dist/activitylog.css -o resources/dist/activitylog.css -v 3.x",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"@awcodes/filament-plugin-purge": "^1.1.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"alpinejs": "^3.10.5",
"autoprefixer": "^10.4.7",
"esbuild": "^0.17.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.1.6"
}
}