-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 3.09 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
{
"name": "your-project-name",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "yarn check-config && vite",
"build": "yarn check-config && tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"extract": "lingui extract",
"prepare": "yarn workspace @beda.software/emr prepare && yarn compile",
"check-config": "if [ ! -f ./contrib/emr-config/config.js ]; then echo 'Config ./contrib/emr-config/config.js does not exists'; exit 1;fi",
"typecheck": "tsc",
"compile": "lingui compile --typescript",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"workspaces": [
"contrib/*"
],
"dependencies": {
"@beda.software/emr": "*"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@lingui/cli": "^4.3.0",
"@lingui/macro": "^4.3.0",
"@lingui/vite-plugin": "^4.3.0",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/addon-onboarding": "^8.2.6",
"@storybook/addon-styling": "^1.3.2",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-vite": "^8.2.6",
"@storybook/test": "^8.2.6",
"@storybook/test-runner": "^0.19.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/classnames": "^2.3.1",
"@types/fhir": "^0.0.37",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.3",
"@types/query-string": "^6.3.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^6.19.9",
"css-loader": "^6.8.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-string-to-lingui": "^0.21.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"sass-loader": "^13.3.2",
"storybook": "^8.2.6",
"style-loader": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.1.5",
"vite-plugin-turbosnap": "^1.0.2",
"vitest": "^0.33.0"
}
}