-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 3.63 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
{
"name": "@madie/madie-layout",
"version": "0.0.3",
"files": [
"dist/**/*"
],
"scripts": {
"start": "npm run build:webpack && webpack serve --port 8500",
"build": "concurrently npm:build:*",
"build:webpack": "webpack --mode=production",
"analyze": "webpack --mode=production --env analyze",
"lint": "eslint src --ext js,ts,tsx",
"lint-fix-all": "npm run lint -- --fix",
"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.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.8",
"@types/styled-components": "^5.1.13",
"@types/systemjs": "^6.1.0",
"@types/testing-library__jest-dom": "^5.14.0",
"@types/webpack-env": "^1.16.0",
"autoprefixer": "^10.3.6",
"babel-jest": "^27.2.4",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"jest-cli": "^27.2.4",
"postcss": "^8.4.7",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-config-single-spa": "^3.0.0",
"typescript": "^4.4.2",
"webpack": "^5.52.1",
"webpack-cli": "^4.7.2",
"webpack-config-single-spa-react": "^4.0.1",
"webpack-config-single-spa-react-ts": "^4.0.1",
"webpack-config-single-spa-ts": "^4.1.0",
"webpack-dev-server": "^4.0.0-rc.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@madie/madie-auth": "^0.0.2",
"@madie/madie-design-system": "^1.2.23",
"@madie/madie-editor": "^0.0.2",
"@madie/madie-layout": "file:",
"@madie/madie-models": "^1.4.14",
"@madie/madie-root": "^0.0.2",
"@mui/icons-material": "^5.16.7",
"@mui/lab": "^5.0.0-alpha.82",
"@mui/material": "^5.6.2",
"@mui/styles": "^5.8.0",
"@okta/okta-auth-js": "^7.5.0",
"@okta/okta-react": "^6.9.0",
"@tailwindcss/forms": "^0.5.3",
"axios": "^1.7.8",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"qs": "^6.10.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"single-spa": "^5.9.3",
"single-spa-react": "^4.4.0",
"styled-components": "^5.3.7",
"tailwindcss": "^3.2.7",
"twin.macro": "^3.0.0",
"yup": "^0.32.11"
},
"types": "dist/madie-madie-layout.d.ts",
"browserslist": [
"defaults",
"not IE 11"
],
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"overrides": {
"glob-parent": "^5.1.2",
"dset": "3.1.3"
}
}