-
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) · 965 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 965 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": "library-management-system-(database)",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:prod": "nodemon ./dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mongoose": "^8.16.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/express": "^5.0.3",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-plugin-n": "^17.20.0",
"globals": "^16.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}