-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1015 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
37
38
39
40
41
{
"name": "library-management-system",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit --logHeapUsage",
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"http-status": "^1.8.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.4",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
}
}