-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.74 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://json.schemastore.org/package.json",
"name": "firefighter",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production npm run build:js && npm run build:css",
"dev:css": "tailwind build -i src/firefighter/incidents/static/css/main.css --minify --watch -o ./src/firefighter/incidents/static/css/main.min.css",
"dev:js": "rollup -c -w --silent",
"build:js": "rollup -c --silent",
"build:css": "tailwind build -i src/firefighter/incidents/static/css/main.css --minify -o ./style.css && cleancss -o ./src/firefighter/incidents/static/css/main.min.css ./style.css && rm ./style.css"
},
"keywords": [],
"author": "",
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"@alpinejs/focus": "^3.14.1",
"@alpinejs/morph": "^3.14.1",
"alpinejs": "^3.14.1",
"htmx.org": "^2.0.3",
"hyperscript.org": "^0.9.12"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"clean-css-cli": "^5.6.3",
"cross-env": "^7.0.3",
"daisyui": "^4.12.13",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"rollup": "^4.24.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.13"
}
}