This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.74 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
{
"name": "availity-starter-wizard",
"private": true,
"version": "0.1.0",
"description": "React project using @availity/workflow",
"main": "index.js",
"scripts": {
"start": "av start",
"av": "av",
"test": "av test",
"test:watch": "av test --watch",
"test:integration": "av test",
"about": "av about",
"lint": "av lint",
"help": "av help",
"upgrade:workflow": "./node_modules/.bin/upgrade-workflow",
"profile": "av profile",
"profile:production": "cross-env NODE_ENV=production av profile",
"build": "av build",
"build:production": "cross-env NODE_ENV=production av build",
"build:staging": "cross-env NODE_ENV=staging av build",
"release": "av release",
"production": "cross-env NODE_ENV=production av release",
"staging": "cross-env NODE_ENV=staging av release"
},
"keywords": [
"react",
"availity",
"workflow"
],
"license": "MIT",
"homepage": "https://github.com/availity/availity-workflow#readme",
"dependencies": {
"@availity/api-axios": "^5.4.0",
"@availity/api-core": "^5.4.0",
"@availity/breadcrumbs": "^3.0.1",
"@availity/env-var": "^1.6.0",
"@availity/form": "^0.2.2",
"@availity/icon": "^0.4.2",
"@availity/link": "^1.2.1",
"@availity/list-group": "^1.1.6",
"@availity/list-group-item": "^1.1.6",
"@availity/localstorage-core": "^2.5.0",
"@availity/page-header": "^10.0.79",
"@availity/reactstrap-validation-date": "^1.7.10",
"@availity/reactstrap-validation-select": "^4.0.1",
"@availity/select": "^0.3.2",
"@availity/spaces": "^4.0.30",
"@availity/step-wizard": "^1.2.2",
"@availity/yup": "^3.0.8",
"availity-uikit": "^3.0.0",
"axios": "^0.21.1",
"chart.js": "^2.8.0",
"classnames": "^2.2.6",
"formik": "^2.0.1-rc.12",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"mobx": "5.9.4",
"mobx-react-lite": "^1.3.1",
"prop-types": "^15.5.7",
"query-string": "^5.1.1",
"react": "^16.8.3",
"react-block-ui": "^1.1.1",
"react-chartkick": "^0.3.1",
"react-charts": "^2.0.0-alpha.12",
"react-dom": "^16.8.3",
"react-select": "^2.0.0",
"react-transition-group": "^2.3.1",
"reactstrap": "^8.0.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@availity/workflow": "^8.5.0",
"@testing-library/react": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"cross-env": "^5.1.4",
"eslint-config-availity": "^7.0.251",
"jest-dom": "^3.0.0",
"typescript": "^4.0.3"
},
"availityWorkflow": true,
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
}