-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
{
"name": "dashboard-ui",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "vite",
"format": "prettier . --write",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest run --config vite.config.ts",
"scan": "auditjs ossi"
},
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@datadog/browser-logs": "^5.18.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.19",
"@sentry/react": "^8.2.1",
"@tanstack/react-query": "^5.50.1",
"axios": "^1.6.5",
"logrocket": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hook-form": "^7.52.1",
"react-router-dom": "^6.21.0",
"styled-components": "^6.1.1",
"valtio": "^1.12.1",
"vite-bundle-visualizer": "^1.0.1"
},
"devDependencies": {
"@nightwatch/apitesting": "^3.1.4",
"@playwright/test": "^1.44.1",
"@swc/core": "^1.5.7",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.12.12",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"auditjs": "^4.0.45",
"cypress": "^13.10.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.0",
"jsdom": "^23.0.1",
"msw": "^2.1.7",
"nightwatch": "^3.6.3",
"prettier": "3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.3.3",
"vitest": "^2.0.1"
},
"msw": {
"workerDirectory": [
"public"
]
}
}