-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
{
"name": "final-project-mahmoud-k-ismail",
"version": "1.0.0",
"description": "[//]: # (The content below is an example project proposal / requirements document. Replace the text below the lines marked \"__TODO__\" with details specific to your project. Remove the \"TODO\" lines.)",
"main": "db.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch:lint": "nodemon --watch . --ext js,jsx --exec 'npm run lint'",
"test": "NODE_ENV=test mocha --require @babel/register --recursive tests/**/*.test.js",
"coverage": "nyc npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/js": "^9.15.0",
"babel-jest": "^29.7.0",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@vitejs/plugin-react": "^4.3.3",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"mongoose": "^8.8.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"redis": "^4.7.0",
"serve": "^14.2.4",
"vite": "^5.4.10"
}
}