-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.47 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.47 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-query-tool",
"private": true,
"version": "0.15.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"type:check": "tsc --noEmit --skipLibCheck",
"lint:check:file": "eslint --report-unused-disable-directives --max-warnings=0 --ext ts,tsx",
"lint:check": "eslint --report-unused-disable-directives --max-warnings=0 --ext ts,tsx .",
"lint:fix:file": "eslint --fix --ext ts,tsx",
"lint:fix": "eslint --fix --ext ts,tsx .",
"preview": "vite preview",
"format:fix:file": "prettier --write",
"format:fix": "prettier --write .",
"format:check:file": "prettier --check",
"format:check": "prettier --check .",
"prepare": "husky",
"test:component": "cypress run --component",
"test:e2e": "cypress run --e2e"
},
"dependencies": {
"@auth0/auth0-react": "^2.13.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.9",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"axios": "^1.15.2",
"eslint-plugin-tsdoc": "^0.5.0",
"glob": "^13.0.0",
"jwt-decode": "^4.0.0",
"notistack": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-draggable": "^4.5.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.13.0",
"react-simple-chatbot": "^0.6.1",
"styled-components": "^4.4.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@kesills/eslint-config-airbnb-typescript": "^20.0.0",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.23",
"cypress": "^13.17.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.26",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"postcss": "^8.5.12",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vitest": "^3.0.8"
}
}