-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1007 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 1007 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": "npx concurrently --names \"CSS,JS\" --prefix-colors \"blue,green\" \"npm run dev:styles\" \"npm run dev:scripts\"",
"dev:styles": "npx postcss resources/css/index.css -o resources/dist/custom-fields.css --config postcss.config.cjs --watch --env development",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "npx postcss resources/css/index.css -o resources/dist/custom-fields.css --config postcss.config.cjs --env production",
"build:scripts": "node bin/build.js",
"build": "npm run build:styles && npm run build:scripts"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"concurrently": "^9.0.1",
"cssnano": "^6.0.1",
"esbuild": "^0.17.19",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0",
"postcss-nesting": "^13.0.0",
"postcss-prefix-selector": "^2.1.1",
"tailwindcss": "^4.1.10"
}
}