-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 874 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 874 Bytes
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
{
"name": "learnlab_api",
"version": "1.0.0",
"description": "learnlab backend api",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"dev": "nodemon server"
},
"author": "Mostafa Babaei",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-fileupload": "^1.5.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.0.1",
"morgan": "^1.10.1",
"node-geocoder": "^4.4.1",
"nodemailer": "^7.0.11",
"slugify": "^1.6.6",
"xss": "^1.0.15"
},
"devDependencies": {
"cross-env": "^10.1.0",
"nodemon": "^3.1.11"
}
}