liberty-hu/package.json

28 lines
859 B
JSON
Raw Normal View History

2023-08-18 11:02:12 +02:00
{
"scripts": {
2023-08-25 12:56:59 +02:00
"shadow:watch": "shadow-cljs watch frontend",
"shadow:release": "shadow-cljs release frontend",
2023-08-18 11:02:12 +02:00
"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",
2023-08-23 03:43:41 +02:00
"postcss:release": "NODE_ENV=production postcss src/css/tailwind.css -o ./public/css/app.css --verbose",
2023-08-18 11:02:12 +02:00
"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": {
2023-08-19 17:34:47 +02:00
"highlight.js": "11.5.1",
2023-08-18 11:02:12 +02:00
"react-dom": "^18.2.0"
}
}