-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "quran-api-id",
"version": "3.0.0",
"main": "./src/index.js",
"license": "MIT",
"author": "R.M. Reza ([email protected])",
"homepage": "https://github.com/renomureza/quran-api-id#readme",
"url": "https://github.com/renomureza/quran-api-id/issues",
"repository": {
"type": "git",
"url": "https://github.com/renomureza/quran-api-id.git"
},
"scripts": {
"dev": "nodemon .",
"start": "node .",
"test": "jest -i --colors --verbose --detectOpenHandles",
"test:watch": "jest -i --watchAll --verbose",
"test:coverage": "jest -i --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky install",
"build:quran": "node ./src/data/scripts/quranBuilder",
"scrape:surah": "node ./src/data/scripts/surahKemenagScraper",
"scrape:tafsir": "node ./src/data/scripts/tafsirKemenagScraper"
},
"dependencies": {
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"http-status": "^1.5.1",
"morgan": "^1.10.0",
"winston": "^3.7.2",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.2"
}
}