27 lines
859 B
JSON
27 lines
859 B
JSON
{
|
|
"scripts": {
|
|
"shadow:watch": "shadow-cljs watch frontend",
|
|
"shadow:release": "shadow-cljs release frontend",
|
|
"postcss:build": "postcss src/css/tailwind.css -o ./public/css/app.css --verbose",
|
|
"postcss:watch": "postcss src/css/tailwind.css -o ./public/css/app.css --verbose -w",
|
|
"postcss:release": "NODE_ENV=production postcss src/css/tailwind.css -o ./public/css/app.css --verbose",
|
|
"dev": "run-p -l *:watch",
|
|
"release": "run-s *:release"
|
|
},
|
|
"name": "liberty-hu",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.15",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.28",
|
|
"postcss-cli": "^10.1.0",
|
|
"postcss-import": "^15.1.0",
|
|
"shadow-cljs": "2.25.2",
|
|
"tailwindcss": "^3.3.3"
|
|
},
|
|
"dependencies": {
|
|
"highlight.js": "11.5.1",
|
|
"react-dom": "^18.2.0"
|
|
}
|
|
}
|