-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.32 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.32 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "fossa-ui",
"version": "0.1.0",
"type": "module",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.4.8",
"@reduxjs/toolkit": "^2.11.2",
"axios": "^1.15.0",
"leaflet": "^1.9.4",
"oidc-client-ts": "^3.5.0",
"react": "^19.2.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-leaflet": "^5.0.0",
"react-organizational-chart": "^2.2.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.13.2",
"web-vitals": "^4.2.4"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "npm run build && vite preview",
"test:unit": "jest",
"test:e2e": "npx cypress run --e2e",
"test:e2e:branch": "npx cypress run --e2e --spec \"cypress/e2e/Branch/**/*.cy.ts\"",
"test:e2e:company": "npx cypress run --e2e --spec \"cypress/e2e/Company/**/*.cy.ts\"",
"test:e2e:department": "npx cypress run --e2e --spec \"cypress/e2e/Department/**/*.cy.ts\"",
"test:e2e:employee": "npx cypress run --e2e --spec \"cypress/e2e/Employee/**/*.cy.ts\"",
"test:e2e:auth": "npx cypress run --e2e --spec \"cypress/e2e/Auth.cy.ts\"",
"test:e2e:flows": "npx cypress run --e2e --spec \"cypress/e2e/Flows.cy.ts\"",
"test:e2e:license": "npx cypress run --e2e --spec \"cypress/e2e/License.cy.ts\"",
"test:e2e:offboarding": "npx cypress run --e2e --spec \"cypress/e2e/Offboarding.cy.ts\"",
"test:e2e:onboarding": "npx cypress run --e2e --spec \"cypress/e2e/Onboarding.cy.ts\"",
"test:e2e:open": "npx cypress open --e2e --browser chrome",
"lint": "eslint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,json,html,md,yml,yaml,scss}\"",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"npm run format"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cypress": "^1.1.6",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"cypress": "^15.11.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^6.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.4.0",
"prettier": "^3.5.2",
"redux-mock-store": "^1.5.5",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.97.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^6.0.5"
}
}