generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
24 lines (24 loc) · 787 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"dev:styles": "postcss resources/css/index.css -o resources/dist/filament-select-tree.css --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "postcss resources/css/index.css -o resources/dist/filament-select-tree.css",
"build:scripts": "node bin/build.js",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"cssnano": "^6.0.1",
"esbuild": "^0.17.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^16.0.1",
"postcss-nesting": "^12.0.2"
},
"dependencies": {
"treeselectjs": "^0.10.0"
}
}