forked from Availity/availity-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 5.1 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 5.1 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@availity/availity-react",
"private": true,
"description": "React components using Availity UIKit and Bootstrap 4",
"keywords": [
"availity",
"react",
"ui"
],
"homepage": "https://availity.github.io/availity-react/",
"bugs": {
"url": "https://github.com/Availity/availity-react/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Availity/availity-react.git"
},
"license": "MIT",
"author": "Robert McGuinness <rob.mcguinness@availity.com>",
"contributors": [
"tyson warner (https://github.com/nylon22)",
"robert mcguinness (https://github.com/robmcguinness)"
],
"workspaces": {
"packages": [
"packages/*",
"docusaurus"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build:components": "yarn clean:builds && rollup -c",
"build:deploy": "yarn build:docs && yarn build:storybook:netlify",
"build:docs": "yarn workspace @availity/dinosaurdocs build",
"build:netlify": "yarn workspace @availity/dinosaurdocs build && yarn build:storybook:netlify",
"build:storybook": "build-storybook",
"build:storybook:netlify": "NODE_ENV=production build-storybook -c .storybook -o ./docusaurus/build/storybook --quiet",
"build:storybook:production": "NODE_ENV=production build-storybook -c .storybook -o ./storybook-docs --quiet",
"check": "npm-check -u && lerna exec --bail false --concurrency 1 -- npm-check -u",
"check:dependencies": "node scripts/check-missing-deps.js",
"check:packages": "sh ./scripts/artifactory-check.sh",
"clean": "lerna clean --yes",
"clean:builds": "rimraf packages/*/dist",
"clean:docs": "rimraf docusaurus/build docusaurus/.docusaurus",
"clean:locks": "rimraf 'yarn.lock'",
"clean:storybook": "rimraf storybook-docs/ storybook-static/",
"nuke": "yarn clean && yarn clean:locks && yarn clean:builds && yarn clean:docs && yarn clean:storybook",
"codecov:ci": "codecov",
"deploy:ci": "yarn build:deploy",
"deploy:docs": "yarn workspace @availity/dinosaurdocs deploy",
"format": "prettier '**/*' --write --ignore-unknown",
"format:check": "prettier '**/*' --check --ignore-unknown",
"postinstall": "yarn bootstrap && yarn build:components",
"lerna": "lerna",
"link": "lerna link",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"new": "plop",
"prerelease:ci": "yarn build:components",
"release:ci": "lerna publish --yes",
"start": "yarn start:storybook",
"start:docs": "yarn workspace @availity/dinosaurdocs start",
"start:storybook": "start-storybook -p 6006",
"pretest": "yarn build:components",
"test": "jest",
"test:ci": "jest --runInBand --collectCoverage",
"test:watch": "jest --watch",
"updated": "lerna updated"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-push": "yarn test && yarn check:dependencies && yarn check:packages"
}
},
"resolutions": {
"@availity/yup": "3.2.0"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.16.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/config-lerna-scopes": "^13.2.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-a11y": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/reactstrap": "^8.5.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"availity-uikit": "^4.1.5",
"babel-jest": "^26.6.2",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.0",
"codecov": "^3.8.2",
"conventional-changelog-cli": "^2.1.1",
"conventional-recommended-bump": "^6.1.0",
"core-js": "^3.13.0",
"css-loader": "^5.0.1",
"dependency-check": "^4.1.0",
"eslint-config-availity": "8.0.6",
"husky": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.2",
"jest-environment-jsdom-global": "^2.0.4",
"lerna": "^3.6.0",
"lint-staged": "^11.2.6",
"node-sass": "^5.0.0",
"plop": "^2.7.4",
"postcss": "^8.3.11",
"prettier": "^2.3.0",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.0.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^10.0.0",
"style-loader": "^2.0.0",
"typescript": "^4.4.4"
},
"msw": {
"workerDirectory": "static"
}
}