forked from tangdrew/fhir-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1011 Bytes
/
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
{
"name": "fhir-ts",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build:typescript": "tsc -b packages",
"build": "yarn install && lerna -v && lerna bootstrap && lerna run build --sort",
"test": "yarn build && lerna run test"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/glob": "^5.0.35",
"@types/jest": "^23.3.2",
"@types/node": "^10.9.3",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lerna": "^3.10.5",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.3.3"
},
"dependencies": {
"fhir-ts-codegen": "file:packages/fhir-ts-codegen"
},
"husky": {
"hooks": {
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}