-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.89 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
{
"name": "@awell-health/sol-scheduling",
"version": "0.3.31",
"packageManager": "yarn@4.4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/awell-health/sol-scheduling.git"
},
"author": {
"name": "awellHealth"
},
"license": "UNLICENSED",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"/dist",
"!**/*.test.ts",
"!**/__tests__/**",
"!**/__mocks__/**"
],
"scripts": {
"dev": "yarn tailwind & yarn storybook",
"format": "yarn prettier --write '**/*.{ts,tsx}'",
"lint": "yarn eslint '**/*.{ts,tsx}' --ignore-pattern .gitignore --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"build": "tsc && vite build",
"prepare": "husky",
"tailwind": "tailwindcss -i ./styles/globals.css -o ./style.css --watch",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"serve-docs": "node docs/server.cjs",
"build-docs": "node docs/generate-swagger-ui.cjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix",
"prettier --write --ignore-unknown"
],
"*.{json,html}": [
"prettier --write --ignore-unknown"
]
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@awell-health/ui-library": "^0.1.65",
"@chromatic-com/storybook": "^1.6.1",
"@eslint/js": "8.57.0",
"@jest/globals": "^29.7.0",
"@storybook/addon-actions": "^8.3.4",
"@storybook/addon-controls": "^8.3.4",
"@storybook/addon-essentials": "^8.3.4",
"@storybook/addon-interactions": "^8.3.4",
"@storybook/blocks": "^8.3.4",
"@storybook/react": "^8.3.4",
"@storybook/react-vite": "^8.3.4",
"@storybook/test": "^8.3.4",
"@storybook/test-runner": "^0.19.1",
"@types/add": "^2",
"@types/cors": "^2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/js-yaml": "^4",
"@types/lodash-es": "^4",
"@types/node": "^22.5.5",
"@types/react": "^18.3.3",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-react": "^4.3.1",
"add": "^2.0.6",
"autoprefixer": "^10.4.20",
"chromatic": "^11.7.0",
"cors": "^2.8.5",
"daisyui": "^4.12.10",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"express": "^4.21.1",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-playwright-preset": "^4.0.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.9",
"playwright": "^1.47.2",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass-embedded": "^1.77.8",
"storybook": "^8.3.4",
"storybook-addon-mock-date": "^0.6.0",
"swagger-ui-dist": "^5.17.14",
"swagger-ui-express": "^5.0.1",
"tailwindcss": "^3.4.11",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.2",
"yarn": "^1.22.22"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"iso-639-1": "^3.1.2",
"lodash-es": "^4.17.21",
"moment-timezone": "^0.5.45",
"react-use": "^17.5.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.21.4"
}
}