{ "name": "quotation-generator", "version": "1.0.0", "description": "Client-side quotation generator with linting setup", "scripts": { "prepare": "[ \"$NODE_ENV\" = \"production\" ] || husky", "dev": "parcel index.html", "build": "parcel build index.html", "start": "node server.js", "lint:js": "eslint script.js tests", "lint": "npm run lint:js", "test": "node tests/test.js" }, "devDependencies": { "eslint": "^9.3.0", "husky": "^9.1.7", "lint-staged": "^16.1.2", "parcel": "^2.15.4", "stylelint": "^16.21.0", "stylelint-config-standard": "^38.0.0" }, "lint-staged": { "*.js": [ "eslint --cache --fix" ], "*.css": [ "stylelint --fix" ] }, "dependencies": { "@tailwindcss/postcss": "^4.1.11", "postcss": "^8.5.6", "tailwindcss": "^4.1.11", "express": "^4.18.2" } }