-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
107 lines (107 loc) · 3.21 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
{
"name": "raw-react-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/msal-browser": "2.38.3",
"@azure/msal-react": "1.5.12",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@improbable-eng/grpc-web": "0.15.0",
"@material-ui/core": "5.0.0-alpha.34",
"@material-ui/icons": "5.0.0-alpha.34",
"@material/button": "14.0.0",
"@material/card": "14.0.0",
"@material/chips": "14.0.0",
"@material/data-table": "14.0.0",
"@material/drawer": "14.0.0",
"@material/floating-label": "14.0.0",
"@material/select": "14.0.0",
"@material/textfield": "14.0.0",
"@material/tooltip": "14.0.0",
"@peculiar/webcrypto": "1.4.5",
"@types/react-beforeunload": "2.1.5",
"classnames": "2.5.1",
"jwt-decode": "4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.25.0",
"react-scripts": "5.0.1",
"react-spinners": "0.13.8",
"react-tooltip": "5.26.0",
"react-use-sub": "4.0.1",
"rxjs": "7.8.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "TC=Europe/Berlin react-scripts test --color",
"start": "WATCHPACK_POLLING=true CHOKIDAR_USEPOLLING=true react-scripts start",
"eslint-check": "eslint --cache --max-warnings 0 --cache-location 'misc/.eslintcache' --ext .ts,.tsx src/",
"eslint-fix": "eslint --fix --cache --max-warnings 0 --cache-location 'misc/.eslintcache' --ext .ts,.tsx src/",
"circular-check": "madge -c --extensions ts,tsx --ts-config tsconfig.json --no-spinner src/",
"scss-check": "prettier -c --parser scss 'src/**/*.scss'",
"scss-fix": "prettier --write --parser scss 'src/**/*.scss'"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/plugin-syntax-flow": "7.24.7",
"@babel/plugin-transform-react-jsx": "7.25.2",
"@testing-library/jest-dom": "6.4.0",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.11.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/parser": "7.18.0",
"browser-headers": "0.4.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"eslint-plugin-prettier": "5.1.3",
"google-protobuf": "3.21.2",
"long": "5.2.3",
"madge": "6.1.0",
"prettier": "3.2.4",
"protobufjs": "7.2.6",
"react-refresh": "0.14.2",
"sass": "1.70.0",
"spy4js": "3.4.1",
"ts-proto": "1.169.1",
"typescript": "5.4.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint"
],
"allowedVersions": {
"react": "18",
"react-dom": "18",
"@types/react": "18"
}
},
"overrides": {
"react-error-overlay": "6.0.9"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://kuberpult-frontend-service:8081"
}