-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.86 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
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
{
"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 <[email protected]>",
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "^3.0.0",
"node": "^18.0.0 | ^20.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",
"test:affected": "nx affected --target=test",
"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.24.4",
"@babel/preset-react": "^7.24.1",
"@chromatic-com/storybook": "^1.3.3",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/config-nx-scopes": "^18.6.0",
"@jscutlery/semver": "^5.2.2",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/x-data-grid": "^7.2.0",
"@nx/devkit": "19.3.1",
"@nx/eslint": "19.3.1",
"@nx/eslint-plugin": "19.3.1",
"@nx/jest": "19.3.1",
"@nx/js": "19.3.1",
"@nx/plugin": "19.3.1",
"@nx/react": "19.3.1",
"@nx/storybook": "19.3.1",
"@nx/vite": "19.3.1",
"@nx/workspace": "19.3.1",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-themes": "7.6.17",
"@storybook/core-server": "7.6.17",
"@storybook/mdx1-csf": "^1.0.0",
"@storybook/react-vite": "7.6.17",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "29.4.4",
"@types/node": "18.19.31",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"babel-jest": "29.4.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-environment-jsdom-global": "^4.0.0",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.4.0",
"libphonenumber-js": "1.11.4",
"lint-staged": "^15.2.10",
"nx": "19.3.1",
"prettier": "^3.2.5",
"react-hook-form": "^7.51.3",
"react-imask": "7.6.1",
"react-number-format": "5.4.0",
"remark-gfm": "^4.0.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.1",
"tslib": "^2.6.2",
"typescript": "5.4.5",
"undici": "^5.28.5",
"vite": "5.2.8",
"vite-plugin-node-polyfills": "^0.22.0"
},
"resolutions": {
"markdown-to-jsx": "7.1.9"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "static"
}
}