-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
{
"name": "availity-starter-typescript",
"version": "0.1.0",
"private": true,
"description": "React project using @availity/workflow and TypeScript",
"keywords": [
"react",
"availity",
"workflow"
],
"homepage": "https://github.com/availity/availity-workflow#readme",
"license": "MIT",
"main": "project/app/index.tsx",
"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"
},
"resolutions": {
"core-js": "3.36.1"
},
"dependencies": {
"@availity/api-axios": "^9.0.6",
"@availity/element": "^0.49.4",
"@availity/yup": "^6.0.1",
"@hookform/resolvers": "^3.9.0",
"@tanstack/react-query": "^4.0.0",
"axios": "^1.7.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.22.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@availity/mock-server": "^9.0.0",
"@availity/workflow": "^12.0.20",
"@testing-library/react": "^14.2.2",
"@types/jest": "^27.0.0",
"@types/node": "^22.5.5",
"@types/query-string": "^6.3.0",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.2.24",
"cross-env": "^7.0.3",
"eslint-config-availity": "^10.0.5",
"prettier": "^3.2.5",
"typescript": "5.5.4"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"availityWorkflow": true
}