-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier --write 'src/**/*.{js,ts,jsx,tsx}' && eslint --fix 'src/**/*.{js,ts,jsx,tsx}'",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@mantine/carousel": "^7.5.0",
"@mantine/charts": "^7.5.0",
"@mantine/code-highlight": "^7.5.0",
"@mantine/core": "^7.5.0",
"@mantine/dates": "^7.5.0",
"@mantine/dropzone": "^7.5.0",
"@mantine/form": "^7.5.0",
"@mantine/hooks": "^7.5.0",
"@mantine/modals": "^7.5.0",
"@mantine/notifications": "^7.5.0",
"@mantine/nprogress": "^7.5.0",
"@mantine/spotlight": "^7.5.0",
"@mantine/tiptap": "^7.5.0",
"@tabler/icons-react": "^2.47.0",
"@tiptap/extension-link": "^2.1.16",
"@tiptap/react": "^2.1.16",
"@tiptap/starter-kit": "^2.1.16",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"date-fns": "^3.6.0",
"dayjs": "^1.11.10",
"embla-carousel-react": "^7.1.0",
"firebase": "^10.5.2",
"framer-motion": "^10.18.0",
"mantine-form-yup-resolver": "^2.0.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router": "^6.17.0",
"react-router-dom": "^6.17.0",
"recharts": "^2.11.0",
"uuid": "^9.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.52.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}