-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
47
48
49
50
51
{
"name": "library-management-server",
"version": "1.0.0",
"description": "Backend of library management system",
"main": "src/index.js",
"private": false,
"license": "MIT",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"lint": "eslint ./src/ --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose"
],
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "2.4.3",
"body-parser": "^1.17.0",
"compression": "^1.6.2",
"cors": "^2.8.3",
"cross-env": "^7.0.3",
"dayjs": "^1.11.5",
"dotenv-safe": "^8.2.0",
"express": "^4.15.2",
"express-validation": "^1.0.2",
"helmet": "^4.6.0",
"http-status": "^1.0.1",
"joi": "^10.4.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.4",
"method-override": "^3.0.0",
"mongoose": "^5.2.17",
"morgan": "^1.8.1",
"uuid": "^3.1.0",
"winston": "^3.1.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^2.0.1"
}
}