pastel.codes/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

2020-06-17 22:34:29 +01:00
{
"name": "pastel.codes",
"version": "0.0.0",
"private": true,
"watch": {
"build-tailwind": {
"patterns": [
"views/"
],
"extensions": "pug"
}
},
2020-06-17 22:34:29 +01:00
"scripts": {
2020-06-22 21:46:41 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon ./bin/www -e js,pug,sass",
"start": "npx ./bin/www -e js,pug,sass",
"watch-tailwind": "npx npm-watch",
"build-tailwind": "npx postcss src/tailwind.css -o public/stylesheets/style.css",
"lint": "prettier --check . && eslint .",
"format": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install"
2020-06-17 22:34:29 +01:00
},
"dependencies": {
"@sendgrid/mail": "^8.1.3",
2020-06-22 21:46:41 +01:00
"app-root-path": "^3.0.0",
"autoprefixer": "^10.3.4",
"axios": "^1.6.8",
2020-12-19 12:10:19 +00:00
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
2021-05-21 15:56:16 +01:00
"express-rate-limit": "^5.2.6",
2020-12-19 12:10:19 +00:00
"hcaptcha": "^0.0.2",
2021-05-21 15:56:16 +01:00
"helmet": "^4.6.0",
"http-errors": "^1.8.0",
2020-12-19 12:10:19 +00:00
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"npm-watch": "^0.11.0",
"postcss-cli": "^8.3.1",
"pug": "^3.0.2",
"tailwind-hamburgers": "^1.1.1",
"tailwindcss": "^2.2.15",
"winston": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,pug}": "prettier --write"
2020-06-17 22:34:29 +01:00
}
}