-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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": "library-management-system",
"version": "1.0.0",
"description": "A simple library management system to manage books and borrowers.",
"main": "index.js",
"scripts": {
"start:dev": "nodemon ./src/index.ts",
"start": "node ./build/index.js",
"lint": "eslint --ignore-path .eslintignore --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tassneem04Hamdy/library-management-system.git"
},
"author": "Tassneem Hamdy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tassneem04Hamdy/library-management-system/issues"
},
"homepage": "https://github.com/Tassneem04Hamdy/library-management-system#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}