-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 785 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "django-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently 'tailwindcss -i ./src/styles/style.css -o ./static/build/styles/style.css --watch' 'esbuild ./src/scripts/app.js --bundle --outfile=./static/build/scripts/app.js --watch'",
"build": "tailwindcss -i ./src/styles/style.css -o ./static/build/styles/style.css --minify && esbuild ./src/scripts/app.js --minify --bundle --outfile=./static/build/scripts/app.js",
"clean": "rm -rf ./static/build/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"alpinejs": "^3.14.3",
"htmx.org": "^2.0.3"
},
"devDependencies": {
"concurrently": "^9.1.0",
"esbuild": "^0.24.0",
"tailwindcss": "^3.4.14"
}
}