-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "zmudri",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "cypress run",
"coverage": "vitest run --coverage",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"@material-tailwind/react": "^2.1.2",
"@sentry/react": "^7.70.0",
"@sentry/vite-plugin": "^2.7.1",
"autoprefixer": "^10.4.16",
"axios": "^1.5.0",
"axios-retry": "^3.8.0",
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jotai": "^2.4.2",
"postcss": "^8.4.30",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"vite-plugin-svgr": "^3.3.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"cypress": "^12.17.4",
"eslint": "^8.50.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.31.4"
}
}