-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.99 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
{
"name": "@madie/madie-auth",
"version": "0.0.2",
"files": [
"dist/**/*"
],
"scripts": {
"start": "webpack serve --port 8502",
"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": "^14.2.0",
"@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",
"@types/ws": "^8.5.12",
"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",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"jest-cli": "^27.5.1",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"ts-config-single-spa": "^3.0.0",
"typescript": "^5.5.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-config-single-spa-react": "^4.0.3",
"webpack-config-single-spa-react-ts": "^4.0.3",
"webpack-config-single-spa-ts": "^4.1.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@madie/madie-root": "^0.0.2",
"@mui/material": "^5.8.2",
"@okta/okta-signin-widget": "^6.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^18.1.0",
"single-spa": "^5.9.3",
"single-spa-react": "^4.6.1",
"styled-components": "^5.3.3",
"tailwindcss": "^3.0.23",
"twin.macro": "^3.0.0"
},
"types": "dist/madie-madie-auth.d.ts",
"browserslist": [
"defaults",
"not IE 11"
],
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"overrides": {
"dset": "3.1.2"
}
}