-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "blog-with-node-and-mongodb",
"version": "1.0.0",
"description": "A simple Node.js app using MongoDB",
"author": "Appsero",
"main": "server.js",
"repository": "https://github.com/anisAronno/blog-with-node-and-mongodb",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "node app.js",
"watch": "nodemon --inspect=0.0.0.0 ./app.js",
"format": "prettier --write .",
"lint": "eslint . ",
"lint:fix": "eslint . --fix "
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.2",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"nodemon": "^2.0.2",
"prettier": "^3.3.3",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}