-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.15 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
{
"name": "@madie/madie-editor",
"version": "0.0.6",
"files": [
"dist/**/*"
],
"scripts": {
"start": "webpack serve --port 8501",
"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.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/fhir": "^0.0.41",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.24",
"@types/systemjs": "^6.1.1",
"@types/testing-library__jest-dom": "^5.14.3",
"@types/webpack-env": "^1.16.3",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.5.1",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"ts-config-single-spa": "^3.0.0",
"typescript": "^4.6.2",
"util": "^0.12.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-config-single-spa-react-ts": "^4.0.3",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@madie/cql-antlr-parser": "^1.0.8",
"@madie/madie-design-system": "^1.2.37",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.73",
"@mui/material": "^5.2.6",
"@mui/styles": "^5.5.1",
"@tanstack/react-table": "^8.10.3",
"ace-builds": "^1.35.4",
"allotment": "^1.20.0",
"axios": "^1.7.4",
"formik": "^2.4.5",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^17.0.2",
"react-ace": "^10.1.0",
"react-dom": "^17.0.2",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"single-spa": "^5.9.3",
"single-spa-react": "^4.6.1",
"styled-components": "^5.3.3",
"tailwindcss": "^3.4.13",
"twin.macro": "^3.4.0",
"yup": "^1.4.0"
},
"types": "dist/madie-madie-editor.d.ts",
"browserslist": [
"defaults",
"not IE 11"
],
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}