-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "tourman_backend",
"version": "1.0.0",
"description": "Backend service for TourMan App",
"type": "module",
"main": "server.js",
"scripts": {
"dev": "nodemon node server.js",
"build": "node server.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "eslint ."
},
"author": "Mohammad Mirzaei",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.18.2",
"dotenv": "^16.3.1",
"express": "^4.18.1",
"jalaali-js": "^1.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"nodemon": "^3.0.2",
"prettier": "^3.1.1"
}
}