-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 956 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 956 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
{
"name": "library-management-server",
"private": true,
"scripts": {
"start": "node dist/server.js",
"dev": "bun run ts-node-dev --respawn --transpile-only src/server.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/validator": "^13.15.2",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.0.1",
"express": "^5.1.0",
"mongodb": "^6.17.0",
"mongoose": "^8.16.1",
"validator": "^13.15.15",
"zod": "^3.25.67"
}
}