-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "book-management-system",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"book-manager": "./cli/index.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "cross-env NODE_ENV=testing jest --runInBand",
"test:watch": "cross-env NODE_ENV=testing jest --watch --runInBand",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"joi": "^17.9.2",
"redis": "^4.6.7",
"winston": "^3.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"supertest": "^6.3.3"
}
}