-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.57 KB
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
{
"name": "@madie/madie-util",
"scripts": {
"start": "webpack serve --port 8508",
"start:standalone": "webpack serve --env standalone",
"build": "concurrently npm:build:*",
"build:webpack": "webpack --mode=production",
"analyze": "webpack --mode=production --env analyze",
"lint": "eslint src --ext js,ts,tsx",
"format": "prettier --write .",
"check-format": "prettier --check .",
"test": "cross-env BABEL_ENV=test jest",
"watch-tests": "cross-env BABEL_ENV=test jest --watch",
"prepare": "husky install",
"coverage": "cross-env BABEL_ENV=test jest --coverage",
"build:types": "tsc"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/fhir": "^0.0.41",
"@types/file-saver": "^2.0.7",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/systemjs": "^6.1.1",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/webpack-env": "^1.16.2",
"babel-jest": "^27.0.6",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.10",
"ts-config-single-spa": "^3.0.0",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-config-single-spa-react": "^4.0.0",
"webpack-config-single-spa-react-ts": "^4.0.0",
"webpack-config-single-spa-ts": "^4.0.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@iconify-icon/react": "^2.3.0",
"@madie/cql-antlr-parser": "^1.0.14",
"@madie/madie-design-system": "^1.2.93",
"@madie/madie-models": "^1.4.74",
"@mui/icons-material": "^6.1.0",
"@mui/material": "^6.1.0",
"@mui/system": "^6.1.0",
"@tanstack/react-table": "^8.10.3",
"allotment": "^1.20.2",
"axios": "^1.15.0",
"date-fns": "^2.28.0",
"diff": "^8.0.3",
"dompurify": "^3.3.2",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"lodash": "^4.18.1",
"react": "^17.0.2",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^17.0.2",
"rxjs": "^7.5.5",
"single-spa": "^5.9.3",
"single-spa-react": "^4.3.1",
"styled-components": "^5.3.7",
"twin.macro": "^3.4.0",
"yaml": "^2.9.0",
"yup": "^0.32.11"
},
"babelMacros": {
"twin": {
"preset": "styled-components",
"autoCssProp": false,
"styled": {
"import": "default",
"from": "styled-components"
},
"css": {
"import": "css",
"from": "styled-components"
}
}
},
"types": "dist/madie-madie-util.d.ts",
"overrides": {
"dset": "^3.1.2"
}
}