-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.65 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.65 KB
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": "tailwindcss -i src/firefighter/incidents/css_src/main.css --watch -o ./src/firefighter/incidents/static/css/main.min.css",
"dev:js": "rollup -c -w --silent",
"build:js": "rollup -c --silent",
"build:css": "tailwindcss -i src/firefighter/incidents/css_src/main.css --minify -o ./src/firefighter/incidents/static/css/main.min.css"
},
"keywords": [],
"author": "",
"dependencies": {
"@alpinejs/collapse": "^3.15.12",
"@alpinejs/focus": "^3.15.12",
"@alpinejs/morph": "^3.15.12",
"alpinejs": "^3.15.12",
"htmx.org": "^2.0.10",
"hyperscript.org": "^0.9.91"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@tailwindcss/cli": "^4.3.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.5.0",
"clean-css-cli": "^5.6.3",
"cross-env": "^10.1.0",
"daisyui": "^5.5.19",
"postcss": "^8.5.14",
"postcss-import": "^16.1.1",
"rollup": "^4.60.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"stylelint": "^17.11.0",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^4.2.1"
}
}