Set up theme app with initial structure, Tailwind CSS integration, and npm dependencies
This commit is contained in:
26
theme/static_src/package.json
Normal file
26
theme/static_src/package.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "theme",
|
||||
"version": "4.4.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"start": "npm run dev",
|
||||
"build": "npm run build:clean && npm run build:tailwind",
|
||||
"build:clean": "rimraf ../static/css/dist",
|
||||
"build:tailwind": "cross-env NODE_ENV=production postcss ./src/styles.css -o ../static/css/dist/styles.css --minify",
|
||||
"dev": "cross-env NODE_ENV=development postcss ./src/styles.css -o ../static/css/dist/styles.css --watch"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@tailwindcss/postcss": "^4.1.16",
|
||||
"daisyui": "^5.3.10",
|
||||
"cross-env": "^10.1.0",
|
||||
"postcss": "^8.5.6",
|
||||
"postcss-cli": "^11.0.1",
|
||||
"postcss-nested": "^7.0.2",
|
||||
"postcss-simple-vars": "^7.0.1",
|
||||
"rimraf": "^6.0.1",
|
||||
"tailwindcss": "^4.1.16"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user