Files
MSCS535_Assignment14/package.json
Carlos Gutierrez dea56a7e80 Complete mock secure web application with:
- User registration and login with CSRF protection
- SQL injection prevention and XSS protection
- Real-time form validation
- Password strength requirements
- Show/hide password toggle
- Modern dark theme UI
- Routes for /login, /register, /home, /logout
- API endpoints for CRUD operations
- Prettier and ESLint configure
2026-02-21 18:20:41 -05:00

22 lines
744 B
JSON

{
"name": "secure-web-app",
"version": "1.0.0",
"description": "Secure PHP/JavaScript web application",
"author": "Carlos Gutierrez <cgutierrez44833@ucumberlands.edu>",
"repository": {
"type": "git",
"url": "https://github.com/CarGDev/MSCS535_Assignment14"
},
"scripts": {
"lint": "eslint public/js/ && ./vendor/bin/phpcs --standard=PSR12 api/ config/",
"lint:fix": "eslint public/js/ --fix",
"format": "prettier --write \"public/**/*.{html,js,css}\"",
"format:check": "prettier --check \"public/**/*.{html,js,css}\"",
"format:all": "prettier --write \"public/**/*.{html,js,css}\" && ./vendor/bin/phpcbf api/ config/"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5"
}
}