2020-06-17 22:34:29 +01:00
|
|
|
{
|
|
|
|
"name": "pastel.codes",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
2021-09-11 21:32:23 +01:00
|
|
|
"watch": {
|
2021-09-11 22:07:23 +01:00
|
|
|
"build-tailwind": {
|
2021-09-11 21:32:23 +01:00
|
|
|
"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",
|
2024-04-29 13:21:31 +01:00
|
|
|
"dev": "npx nodemon ./bin/www -e js,pug,sass",
|
2024-04-29 17:21:03 +01:00
|
|
|
"start": "npx nodemon ./bin/www -e js,pug,sass",
|
2021-09-11 22:07:23 +01:00
|
|
|
"watch-tailwind": "npx npm-watch",
|
2024-04-29 13:21:31 +01:00
|
|
|
"build-tailwind": "npx postcss src/tailwind.css -o public/stylesheets/style.css",
|
|
|
|
"lint": "prettier --check . && eslint .",
|
|
|
|
"format": "prettier --write --ignore-path .gitignore .",
|
2024-04-29 17:21:03 +01:00
|
|
|
"husky-install": "husky install"
|
2020-06-17 22:34:29 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-29 13:21:31 +01:00
|
|
|
"@sendgrid/mail": "^8.1.3",
|
2020-06-22 21:46:41 +01:00
|
|
|
"app-root-path": "^3.0.0",
|
2024-04-29 13:21:31 +01:00
|
|
|
"autoprefixer": "^10.3.4",
|
|
|
|
"axios": "^1.6.8",
|
2020-12-19 12:10:19 +00:00
|
|
|
"cookie-parser": "^1.4.5",
|
2024-09-17 22:50:34 +01:00
|
|
|
"express": "^4.20.0",
|
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",
|
2021-09-12 08:51:36 +01:00
|
|
|
"nodemailer": "^6.6.1",
|
2021-09-11 21:32:23 +01:00
|
|
|
"npm-watch": "^0.11.0",
|
|
|
|
"postcss-cli": "^8.3.1",
|
2024-04-29 13:21:31 +01:00
|
|
|
"pug": "^3.0.2",
|
|
|
|
"tailwind-hamburgers": "^1.1.1",
|
|
|
|
"tailwindcss": "^2.2.15",
|
|
|
|
"winston": "^3.3.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@eslint/js": "^9.1.1",
|
2024-04-29 17:21:03 +01:00
|
|
|
"@prettier/plugin-pug": "^3.0.0",
|
2024-04-29 13:21:31 +01:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|