-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1001 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1001 Bytes
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
{
"name": "Patient Appointment and Clinical Intelligence System",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.{ts,tsx}\"",
"format": "prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.29.3",
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"**/*.json": [
"prettier --write"
],
"**/*.md": [
"prettier --write"
]
},
"dependencies": {
"husky": "^9.1.7"
}
}