-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "namaz-vakti-api",
"version": "1.1.0",
"description": "",
"type": "module",
"main": "src/index.ts",
"scripts": {
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -r 0 -s",
"start": "tsx src/index.ts",
"dev": "nodemon src/index.ts",
"format": "prettier --write .",
"lint": "eslint --max-warnings=0",
"lint-fix": "eslint --fix",
"prepare": "husky install",
"test": "vitest run",
"test-watch": "vitest",
"test-cov": "vitest run --coverage",
"coverage-report": "vitest run --coverage --coverage.reporter=html",
"test2": "PORT=8080 vitest",
"update-readme-test-cov": "npm run test-cov && npm run make-badges",
"make-badges": "istanbul-badges-readme",
"all": "npm run lint && npm run format && npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^1.19.9",
"adhan": "^4.4.3",
"hono": "^4.12.2",
"irem": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.5.4",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/coverage-istanbul": "^3.1.2",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"istanbul-badges-readme": "^1.9.0",
"lint-staged": "^15.2.9",
"moment-timezone": "^0.5.45",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.1.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^3.1.2"
},
"engines": {
"node": "24.x",
"npm": "11.x"
},
"lint-staged": {
"api_src/**.{ts,js}": [
"prettier --write",
"eslint --max-warnings=0"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}