-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "real-inspire",
"version": "1.0.0",
"description": "Inspirational Quotes API",
"main": "src/server.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "cross-env NODE_ENV=production node src/server.js",
"dev": "cross-env NODE_ENV=development nodemon -L src/server.js",
"test": "jest -i --colors --verbose --detectOpenHandles",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky install"
},
"keywords": [],
"author": "Mohamad Ayash",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"mongoose": "^8.0.1",
"morgan": "^1.10.0",
"slugify": "^1.6.6",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@faker-js/faker": "^8.3.1",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"node-mocks-http": "^1.13.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
},
"optionalDependencies": {
"husky": "^8.0.3"
},
"lint-staged": {
"*.js": "eslint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}