-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "vakit",
"version": "1.1.0",
"description": "",
"type": "module",
"main": "api/index.ts",
"scripts": {
"start": "tsx api/index.ts",
"dev": "nodemon api/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": {
"adhan": "^4.4.3",
"express": "^4.19.2",
"irem": "^1.1.0-RC3"
},
"devDependencies": {
"@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": "^2.0.5",
"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.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"lint-staged": {
"api_src/**.{ts,js}": [
"prettier --write",
"eslint --max-warnings=0"
]
}
}