-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1015 Bytes
/
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
{
"name": "html-site",
"version": "1.0.0",
"description": "Euruko 2025 website",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist/*",
"copy:html": "cp index.html dist/",
"copy:images": "mkdir -p dist/images && cp -r src/images/* dist/images/",
"build:css": "tailwindcss -i ./src/input.css -o ./dist/output.css",
"build": "npm run clean && npm run build:css && npm run copy:html && npm run copy:images",
"watch:css": "tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"watch:html": "nodemon --watch index.html --exec 'npm run copy:html'",
"serve": "browser-sync start --server 'dist' --files 'dist/**/*' --no-notify",
"dev": "npm run build && npm-run-all --parallel watch:css watch:html serve"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.17",
"browser-sync": "^3.0.3",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
}
}