-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.08 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "availity-element-monorepo",
"version": "0.0.0",
"private": true,
"description": "React component library for the Availity design system",
"repository": "https://github.com/Availity/element.git",
"license": "MIT",
"author": "Jordan Young <jordan.young@availity.com>",
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "^4.0.0",
"node": "^20.0.0 | ^22.0.0 | ^24.0.0"
},
"scripts": {
"build": "nx run-many --target=build --all",
"build:storybook": "nx build-storybook element-storybook",
"build:storybook:ci": "nx run element-storybook:build-storybook:ci",
"clean": "nx run-many --target=clean --all --exclude=nx-generator",
"create:generator": "nx generate @nx/plugin:generator ${1} --project=${0}",
"create:package": "nx generate @availity/nx-generator:nx-generator ${0}",
"create:plugin": "nx g @nx/plugin:plugin ${0}",
"lint": "nx run-many --target=lint --all --exclude=nx-generator",
"lint:affected": "nx affected --target=lint --exclude=nx-generator",
"postinstall": "is-ci || husky install",
"publish:affected": "nx affected --target=publish",
"publish:affected:canary": "nx affected --target=publish:canary",
"start": "yarn start:storybook",
"start:storybook": "nx storybook element-storybook",
"test": "nx run-many --target=test --all --runInBand",
"test:affected": "nx affected --target=test --runInBand",
"test:coverage": "nx run-many --target=test --all --parallel=3 --runInBand --coverage --no-cache && node ./scripts/merge-coverage.js",
"version:affected": "nx affected --target=version --parallel=1",
"version:affected:canary": "nx affected --target=version --parallel=1 --verbose --preid=alpha --releaseAs=prerelease ${*}",
"version:dry-run": "nx affected --target version --dryRun --parallel=1 --verbose"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/config-nx-scopes": "^18.6.1",
"@jscutlery/semver": "~5.7.0",
"@mui/lab": "7.0.1-beta.18",
"@mui/x-data-grid": "^8.16.0",
"@nx/devkit": "22.5.3",
"@nx/eslint": "22.5.3",
"@nx/eslint-plugin": "22.5.3",
"@nx/jest": "22.5.3",
"@nx/js": "22.5.3",
"@nx/plugin": "22.5.3",
"@nx/react": "22.5.3",
"@nx/storybook": "22.5.3",
"@nx/vite": "22.5.3",
"@nx/workspace": "22.5.3",
"@storybook/addon-a11y": "10.2.13",
"@storybook/addon-docs": "10.2.13",
"@storybook/addon-themes": "10.2.13",
"@storybook/react-vite": "10.2.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "30.0.0",
"@types/node": "24.10.0",
"@types/qs": "^6.9.18",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"babel-jest": "30.0.5",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-storybook": "10.1.4",
"glob": "^7.2.3",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-environment-jsdom-global": "^4.0.0",
"jest-util": "30.0.5",
"jiti": "2.4.2",
"jsdom": "^26.0.0",
"jsonc-eslint-parser": "^2.4.0",
"libphonenumber-js": "1.11.4",
"lint-staged": "^15.5.0",
"nx": "22.5.3",
"prettier": "^3.5.3",
"react-hook-form": "^7.55.0",
"react-imask": "7.6.1",
"react-number-format": "5.4.4",
"remark-gfm": "^4.0.1",
"ts-jest": "29.4.5",
"ts-node": "10.9.1",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"undici": "^5.29.0",
"vite": "7.2.6",
"vite-plugin-node-polyfills": "^0.24.0"
},
"packageManager": "yarn@4.12.0",
"msw": {
"workerDirectory": "static"
},
"dependencies": {
"storybook": "10.2.13"
}
}