-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.45 KB
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
{
"name": "react-enterprise-app",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:uat": "vite build --mode uat",
"build:prod": "vite build --mode production",
"preview": "vite preview",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0 --format junit --output-file reports/eslint/junit.xml",
"lint:fix": "eslint . --ext js,jsx --fix",
"format": "prettier --write .",
"test": "vitest",
"test:ci": "vitest run --reporter junit --outputFile reports/vitest/junit.xml",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --reporter=junit",
"test:a11y": "playwright test --config=playwright.a11y.config.js",
"test:a11y:ci": "playwright test --config=playwright.a11y.config.js --reporter=junit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"depcheck": "depcheck",
"secretlint": "secretlint \"**/*\"",
"prepare": "husky install"
},
"dependencies": {
"@azure/msal-browser": "^3.10.0",
"@azure/msal-react": "^2.0.12",
"@reduxjs/toolkit": "^2.2.1",
"antd": "^5.14.1",
"i18next": "^23.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-i18next": "^14.0.5",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.1",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.8.5",
"@playwright/test": "^1.41.2",
"@soos-io/api-client": "^1.2.2",
"@vitejs/plugin-react": "^4.2.1",
"depcheck": "^1.4.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"secretlint": "^8.0.0",
"vite": "^5.1.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.17.4",
"vitepress": "^1.0.0-rc.44",
"vitest": "^1.3.0",
"vitest-junit-reporter": "^0.3.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}