Weather/package.json

26 lines
585 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": {
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"sharp": "^0.34.4",
"tailwindcss": "^3.4.16"
}
}