forked from Availity/availity-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.3 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
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
143
{
"name": "@availity/availity-react",
"private": true,
"description": "React components using Availity UIKit and Bootstrap 4",
"license": "MIT",
"homepage": "https://github.com/Availity/availity-react#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Availity/availity-react.git"
},
"contributors": [
"tyson warner (https://github.com/nylon22)",
"robert mcguinness (https://github.com/robmcguinness)"
],
"bugs": {
"url": "https://github.com/Availity/availity-react/issues"
},
"author": "Robert McGuinness <rob.mcguinness@availity.com>",
"keywords": [
"availity",
"react",
"ui"
],
"main": "index.js",
"workspaces": [
"packages/*",
"docs",
"storybook"
],
"scripts": {
"format": "prettier --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js' '!(storybook|docs)/**/*.js'",
"lint": "eslint .",
"nuke": "yarn remove-locks && yarn clean",
"bootstrap": "lerna bootstrap --use-workspaces",
"lerna": "lerna",
"codecov:ci": "codecov",
"link": "lerna link",
"clean": "lerna clean --yes",
"test": "jest",
"test:ci": "jest --runInBand --collectCoverage",
"postinstall": "yarn run bootstrap",
"start": "yarn workspace @availity/react-storybook start",
"start:docs": "yarn workspace @availity/react-docs start",
"build:storybook": "yarn workspace @availity/react-storybook build",
"build:storybook:netlify": "yarn workspace @availity/react-storybook build:netlify",
"build:netlify": "yarn workspace @availity/react-docs build && yarn run build:storybook:netlify",
"build:docs": "yarn workspace @availity/react-docs build:deploy",
"build:deploy": "yarn run build:docs && yarn run build:storybook:netlify",
"release": "lerna publish",
"release:ci": "lerna publish --yes",
"release:canary": "lerna publish -c",
"deploy:ci": "yarn run build:deploy",
"updated": "lerna updated",
"remove-locks": "find . -type f -name 'yarn.lock' -delete",
"check": "npm-check -u && lerna exec --bail false --concurrency 1 -- npm-check -u",
"new": "plop"
},
"devDependencies": {
"@availity/api-axios": "^5.4.0",
"@availity/api-core": "^6.1.3",
"@availity/localstorage-core": "^3.0.0",
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"@testing-library/react": "^9.1.0",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/reactstrap": "^8.0.6",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"babel-preset-react-app": "^9.0.2",
"codecov": "^3.5.0",
"conventional-changelog-cli": "^2.0.11",
"conventional-recommended-bump": "^6.0.0",
"core-js": "^3.1.2",
"eslint-config-availity": "^5.2.1",
"husky": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"jest-environment-jsdom-global": "^1.1.0",
"lerna": "^3.6.0",
"lint-staged": "^10.0.7",
"node-sass": "^4.12.0",
"plop": "^2.4.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"raf": "^3.4.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^8.0.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"jest": {
"testURL": "http://localhost/",
"transformIgnorePatterns": [
"<rootDir>.*(node_modules)(?!.*@availity.*).*$"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
},
"setupFiles": [
"raf/polyfill"
],
"testEnvironment": "jest-environment-jsdom-global"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
],
"rules": {
"header-max-length": [
0,
"always",
100
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
}
}