forked from Availity/availity-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
158 lines (158 loc) · 5.2 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@availity/availity-react",
"private": true,
"workspaces": [
"packages/*"
],
"description": "React components using Availity UIKit and Bootstrap 4",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Availity/availity-react.git"
},
"scripts": {
"format": "prettier --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js' 'packages/*/!(storybook|docs)/**/*.js'",
"lint": "eslint .",
"nuke": "npm run remove-locks && npm run 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": "npm 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",
"release": "lerna publish",
"release:ci": "lerna publish --yes",
"release:canary": "lerna publish -c",
"add": "sh ./scripts/add.sh",
"deploy:storybook": "yarn workspace @availity/react-storybook build && gh-pages -d docs --dest storybook --message 'deployed storybook [skip ci]'",
"deploy:docs": "yarn workspace @availity/react-docs build:deploy && gh-pages -d packages/docs/public --message 'deployed docs [skip ci]'",
"deploy:ci": "npm run deploy:docs && npm run deploy:storybook",
"updated": "lerna updated",
"remove-locks": "find . -type f -name 'package-lock.json' -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": "^5.4.0",
"@availity/localstorage-core": "^2.6.1",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@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": "^24.0.18",
"@types/node": "^12.0.2",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"codecov": "^3.5.0",
"conventional-changelog-cli": "^2.0.11",
"conventional-recommended-bump": "^6.0.0",
"core-js": "^3.1.2",
"eslint-config-availity": "^4.0.9",
"husky": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.0.0",
"jest-environment-jsdom-global": "^1.1.0",
"lerna": "^3.6.0",
"lint-staged": "^9.2.0",
"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": "^24.0.0",
"typescript": "^3.3.1"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
],
"rules": {
"header-max-length": [
0,
"always",
100
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"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"
},
"contributors": [
"tyson warner (https://github.com/nylon22)",
"robert mcguinness (https://github.com/robmcguinness)"
],
"bugs": {
"url": "https://github.com/Availity/availity-react/issues"
},
"homepage": "https://github.com/Availity/availity-react#readme",
"main": "index.js",
"keywords": [
"availity",
"react",
"ui"
],
"author": "Robert McGuinness <[email protected]>",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "npm test && lint-staged"
}
},
"dependencies": {
"gh-pages": "^2.1.1"
}
}