-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "front-end-security-example",
"version": "1.0.0",
"description": "Project demonstrates how to implement main web security principles at Front-end. Built upon boilerplate for a full stack web app (React, Node.js, Express and Webpack)",
"main": "src/server/index.js",
"scripts": {
"build": "vite build",
"start": "npm run build && node src/server/index.js",
"server": "nodemon -r dotenv/config src/server/index.js",
"client": "vite",
"lint-client": "eslint src/client --ext .js,.jsx",
"lint-server": "eslint src/server --ext .js"
},
"author": "Mad Devs",
"license": "ISC",
"dependencies": {
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"csurf": "^1.11.0",
"dompurify": "^3.0.9",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-jwt": "^8.4.1",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"vite": "^5.1.6",
"vite-plugin-mkcert": "^1.17.4"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-security": "^2.1.1",
"nodemon": "^3.1.0",
"npm-check-updates": "^16.14.15"
}
}