Weather/package.json
Fovway 2d947941b5 modified: .gitignore
modified:   README.md
	modified:   index.html
	new file:   input.css
	new file:   output.css
	modified:   package-lock.json
	modified:   package.json
	new file:   postcss.config.js
	modified:   script.js
	new file:   tailwind.config.js
2025-10-08 12:57:03 +07:00

23 lines
496 B
JSON

{
"name": "weather-app",
"version": "1.0.0",
"description": "Weather app with timelapse",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build-css": "tailwindcss -i input.css -o output.css",
"watch-css": "tailwindcss -i input.css -o output.css --watch"
},
"engines": {
"node": "8"
},
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.16"
}
}