-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "availity-starter-react",
"version": "0.1.0",
"private": true,
"description": "React project using @availity/workflow",
"keywords": [
"react",
"availity",
"workflow"
],
"homepage": "https://github.com/availity/availity-workflow#readme",
"license": "MIT",
"main": "project/app/index.js",
"scripts": {
"av": "av",
"about": "av about",
"build": "av build",
"build:production": "cross-env NODE_ENV=production av build",
"build:staging": "cross-env NODE_ENV=staging av build",
"help": "av help",
"lint": "av lint",
"format": "prettier --write '**/*.{ts,tsx,js,scss}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,scss}'",
"production": "cross-env NODE_ENV=production av release",
"profile": "av profile",
"profile:production": "cross-env NODE_ENV=production av profile",
"release": "av release",
"staging": "cross-env NODE_ENV=staging av release",
"start": "av start",
"test": "av test",
"test:integration": "av test",
"test:watch": "av test --watch",
"upgrade:workflow": "./node_modules/.bin/upgrade-workflow"
},
"dependencies": {
"@availity/api-axios": "^9.0.6",
"@availity/element": "^0.49.4",
"@tanstack/react-query": "^4.36.1",
"axios": "^1.7.8",
"browserslist": "4.23.3",
"caniuse-lite": "1.0.30001653",
"prop-types": "^15.8.1",
"query-string": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@availity/mock-server": "^9.0.5",
"@availity/workflow": "^12.0.20",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"cross-env": "^7.0.3",
"eslint-config-availity": "^10.0.5",
"prettier": "^3.2.5",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"availityWorkflow": true,
"packageManager": "[email protected]"
}