-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 807 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"license": "MIT",
"scripts": {
"dev": "npx @tailwindcss/cli -i ./assets/css/tailwind.css -o ./assets/css/style.css --watch",
"build": "npx @tailwindcss/cli -i ./assets/css/tailwind.css -o ./assets/css/style.css --minify",
"format": "prettier --write ."
},
"devDependencies": {
"@iconify/json": "^2.2.441",
"@iconify/tailwind4": "^1.2.1",
"@tailwindcss/cli": "^4.2.0",
"daisyui": "^5.5.18",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.0"
},
"dependencies": {
"@floating-ui/dom": "^1.7.5",
"htmx.org": "^2.0.8"
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5",
"endOfLine": "lf",
"bracketSpacing": true,
"arrowParens": "always"
}
}