This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
85 lines (85 loc) · 2.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@hospitalrun/core",
"version": "0.1.0",
"description": "Shared Interfaces and Models",
"main": "./dist/index.js",
"types": "./typings/index.d.ts",
"files": [
"dist",
"typings"
],
"scripts": {
"commit": "npx git-cz",
"test": "echo \"Error: no test specified\" && exit 0",
"build": "npm run clean && npx json-schema-to-typescript -i src/schemas/**/*.json -o dist/types",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"clean": "rimraf dist",
"update": "npx npm-check -u",
"prepare": "npm run build",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HospitalRun/hospitalrun-core.git"
},
"author": "Maksim Sinik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HospitalRun/hospitalrun-core/issues"
},
"homepage": "https://github.com/HospitalRun/hospitalrun-core#readme",
"devDependencies": {
"@commitlint/cli": "~16.1.0",
"@commitlint/config-conventional": "~16.0.0",
"@commitlint/prompt": "~16.1.0",
"@semantic-release/changelog": "~6.0.0",
"@semantic-release/commit-analyzer": "~9.0.1",
"@semantic-release/git": "~10.0.0",
"@semantic-release/github": "~8.0.1",
"@semantic-release/release-notes-generator": "~10.0.2",
"@types/pouchdb": "~6.4.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commitizen": "~4.2.1",
"commitlint-config-cz": "~0.13.0",
"cz-conventional-changelog": "~3.3.0",
"dateformat": "~5.0.1",
"eslint": "~8.8.0",
"eslint-config-airbnb": "~19.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "~2.25.1",
"eslint-plugin-jest": "~26.1.0",
"eslint-plugin-jsx-a11y": "~6.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "~7.28.0",
"husky": "~7.0.0",
"lint-staged": "~12.3.3",
"pouchdb": "^7.1.1",
"prettier": "^2.0.2",
"semantic-release": "^18.0.0",
"typescript": "~4.2.2"
},
"husky": {
"hooks": {
"commit-msg": "npm run commitlint -- -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"eslint-plugin-react-hooks": "~4.3.0",
"rimraf": "~3.0.2"
}
}