-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.54 KB
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
{
"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",
"type": "module",
"workspaces": [
"packages/*",
"docusaurus"
],
"engines": {
"yarn": "^4.0.0",
"node": "^22.0.0 || ^24.0.0"
},
"scripts": {
"build": "nx run-many --target=build",
"build:packages": "nx run-many --target=build --exclude=@availity/dinosaurdocs",
"build:docs": "nx build @availity/dinosaurdocs",
"build:affected": "nx affected --target=build",
"check:registry": "sh ./scripts/artifactory-check.sh",
"clean": "nx run-many --target=clean && rm -rf node_modules .nx/cache .nx/workspace-data coverage docusaurus/build docusaurus/.docusaurus",
"deploy:docs": "yarn build:docs && gh-pages -d @availity/dinosaurdocs/build --message 'deployed docs [skip ci]'",
"dev": "nx run-many --target=dev",
"format:check": "nx format:check",
"format:write": "nx format:write",
"lint": "nx run-many --target=lint",
"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",
"typecheck": "tsc --noEmit",
"test:affected": "nx affected --target=test",
"test:ci": "vitest run --coverage",
"test:coverage": "vitest run --coverage",
"test": "nx run-many --target=test",
"version:dry-run": "nx affected --target version --dryRun --parallel=1",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/config-nx-scopes": "^21.0.2",
"@jscutlery/semver": "^5.8.1",
"@nx/eslint": "22.5.1",
"@nx/js": "22.5.1",
"@nx/workspace": "22.5.1",
"@types/node": "^22.19.21",
"@vitest/coverage-v8": "^4.1.8",
"eslint-config-availity": "^14.0.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"nx": "22.5.1",
"plop": "^4.0.5",
"prettier": "^3.8.4",
"typescript": "5.9.3",
"vitest": "^4.1.8"
},
"resolutions": {
"socks": "2.7.3"
},
"packageManager": "yarn@4.17.0"
}