forked from raz0229/al-quran-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "al-quran-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node ./src/bin/www",
"dev": "cross-env NODE_ENV=development nodemon ./src/bin/www",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"http-errors": "^1.8.0",
"linebyline": "^1.3.0",
"morgan": "^1.10.0",
"nthline": "^1.0.2",
"search-in-file": "^1.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^24.9.0",
"nodemon": "^2.0.12",
"supertest": "^3.4.2"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
"*.test.js"
]
}
}