blob: ca0d4e2d3b0a27522367e13b693ff8faa51e105f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"name": "task-dashboard-frontend",
"version": "1.0.0",
"description": "Frontend build tools for task dashboard",
"scripts": {
"dev": "npm run css:watch",
"build": "npm run css:build",
"css:build": "postcss web/static/css/input.css -o web/static/css/output.css --verbose",
"css:watch": "postcss web/static/css/input.css -o web/static/css/output.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.0"
}
}
|