-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
{
"name": "ui-react",
"version": "0.1.0",
"homepage": ".",
"private": true,
"dependencies": {
"@headlessui/react": "1.7.19",
"@heroicons/react": "1.0.6",
"@icons-pack/react-simple-icons": "9.4.1",
"@popperjs/core": "2.11.8",
"@tailwindcss/forms": "0.5.10",
"@types/node": "20.17.12",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"date-fns": "2.30.0",
"oidc-client-ts": "2.4.1",
"react": "18.3.1",
"react-datepicker": "4.25.0",
"react-dom": "18.3.1",
"react-oidc-context": "2.3.1",
"react-popper": "2.3.0",
"react-router-dom": "6.26.2",
"react-simple-icons": "1.0.0-beta.5",
"simple-icons": "11.15.0",
"swr": "2.2.5",
"typescript": "5.6.3",
"web-vitals": "3.5.2"
},
"overrides": {
"react-scripts": {
"typescript": "^5"
}
},
"scripts": {
"start": "vite --base=/ui",
"start:oidc": "vite --mode development-oidc",
"build": "vite build --base=/ui",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter default --reporter junit --outputFile.junit junit.xml",
"license-report": "license-checker-rseidelsohn --production --json --files licenses/ --relativeLicensePath --relativeModulePath --excludePackages ui-react"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.5.2",
"@types/react-datepicker": "4.19.6",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^1.0.0",
"autoprefixer": "10.4.20",
"env-cmd": "10.1.0",
"jsdom": "^23.0.0",
"license-checker-rseidelsohn": "4.4.2",
"msw": "2.7.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"vite": "^5.0.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.0.0"
},
"msw": {
"workerDirectory": "public"
}
}