-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
{
"private": true,
"name": "availity-workflow",
"engines": {
"yarn": "^3.0.0",
"node": "^18.0.0 || ^20.0.0"
},
"workspaces": [
"packages/*",
"docusaurus",
"example"
],
"scripts": {
"build:app": "yarn workspace @availity/example build",
"build:docs": "yarn workspace @availity/dinosaurdocs build",
"changelog:generate": "cd $INIT_CWD && conventional-changelog -p angular -i CHANGELOG.md -s --commit-path=$INIT_CWD --skip-unstable",
"check:packages": "sh ./scripts/artifactory-check.sh",
"check:dependencies": "node scripts/check-missing-deps.js",
"check:versions": "node scripts/check-version-strategy.js",
"format": "prettier --write 'packages/*/*.(js|ts|tsx|jsx)' 'packages/*/!(node_modules|dist)/**/*.(js|ts|jsx|tsx)'",
"lint": "node ./node_modules/.bin/eslint .",
"postinstall": "is-ci || husky install",
"start": "yarn workspace @availity/dinosaurdocs start --no-open",
"start:app": "yarn workspace @availity/example start",
"start:docs": "yarn workspace @availity/dinosaurdocs start",
"test": "jest --silent",
"test:app": "yarn workspace @availity/example test",
"test:integration": "yarn workspaces foreach -i -v run integration --verbose",
"version": "nx affected --target version --parallel=1",
"version:dry-run": "nx affected --target version --dryRun --verbose --parallel=1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jscutlery/semver": "^5.3.1",
"@nx/js": "^19.6.2",
"@nx/workspace": "^19.6.2",
"@types/is-ci": "^3.0.4",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dependency-check": "^4.1.0",
"eslint-config-availity": "^10.0.2",
"gh-pages": "^5.0.0",
"husky": "^9.1.5",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"lint-staged": "^15.2.8",
"nx": "^19.6.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"resolutions": {
"socks": "2.7.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always",
85
]
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
},
"jest": {
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\](?!@availity).+\\.(js|jsx|ts|tsx)$"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/docusaurus/"
],
"testRegex": ".*.spec.js$"
},
"packageManager": "[email protected]"
}