-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.78 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
{
"name": "@availity/sdk-js",
"private": true,
"description": "Javascript SDK for Availity",
"homepage": "https://availity.github.io/sdk-js/",
"bugs": {
"url": "https://github.com/Availity/sdk-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/sdk-js.git"
},
"license": "MIT",
"workspaces": [
"packages/*",
"docusaurus"
],
"engines": {
"yarn": "^3.0.0",
"node": "^18.0.0 || ^20.0.0"
},
"scripts": {
"build": "nx run-many --target=build --all",
"build:packages": "nx run-many --target=build --all --exclude=@availity/dinosaurdocs",
"build:docs": "nx build @availity/dinosaurdocs",
"build:affected": "nx affected --target=build",
"check:deps": "adio",
"check:registry": "sh ./scripts/artifactory-check.sh",
"clean": "nx run-many --target=clean --all && rm -rf node_modules",
"codecov:ci": "codecov",
"deploy:docs": "yarn build:docs && gh-pages -d @availity/dinosaurdocs/build --message 'deployed docs [skip ci]'",
"dev": "nx run-many --target=dev --all",
"format:check": "nx format:check --all",
"format:write": "nx format:write --all",
"lint": "nx run-many --target=lint --all",
"lint:affected": "nx affected --target=lint",
"lint:fix": "nx affected --target=lint --fix",
"new": "plop",
"nx": "nx",
"postinstall": "is-ci || husky",
"publish": "nx affected --target version --parallel=1",
"publish:dry-run": "nx affected --target version --dryRun --parallel=1",
"start": "nx start @availity/dinosaurdocs",
"test:affected": "nx affected --target=test",
"test:ci": "nx run-many --target=test --all --parallel=3 --runInBand --coverage && node ./scripts/merge-coverage.js",
"test": "nx run-many --target=test --all",
"version:dry-run": "nx affected --target version --dryRun --parallel=1"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/config-nx-scopes": "^18.0.0",
"@jscutlery/semver": "^5.2.2",
"@nx/eslint": "19.5.3",
"@nx/jest": "19.5.3",
"@nx/js": "19.5.3",
"@nx/workspace": "19.5.3",
"@types/jest": "^26.0.24",
"@types/node": "18.19.54",
"adio": "^1.2.1",
"codecov": "^3.8.3",
"dependency-check": "^4.1.0",
"eslint-config-availity": "^10.0.4",
"gh-pages": "^6.1.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-jsdom-global": "^3.1.2",
"lint-staged": "^15.2.10",
"nock": "^13.5.4",
"nx": "19.5.3",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"ts-jest": "^27.1.5",
"typescript": "5.5.4",
"undici": "^6.19.8",
"xhr-mock": "^2.5.1"
},
"resolutions": {
"socks": "2.7.3"
},
"packageManager": "[email protected]"
}