-
-
Notifications
You must be signed in to change notification settings - Fork 636
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": "hievents-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:csr": "vite --port 5678 --host 0.0.0.0",
"build:csr": "vite build",
"build-strict:csr": "tsc && npm run build:csr",
"preview:csr": "vite preview",
"dev:ssr": "cross-env NODE_ENV=development node server.js --port 5678",
"build:ssr:client": "vite build --ssrManifest --outDir dist/client",
"build:ssr:server": "vite build --ssr src/entry.server.tsx --outDir dist/server",
"start": "cross-env NODE_ENV=production node server.js",
"build": "npm run messages:extract && npm run messages:compile && npm run build:ssr:client && npm run build:ssr:server",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"messages:extract": "lingui extract",
"messages:compile": "lingui compile"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@lingui/macro": "^4.7.0",
"@lingui/react": "^4.7.0",
"@mantine/carousel": "7.17.0",
"@mantine/charts": "7.17.0",
"@mantine/core": "7.17.0",
"@mantine/dates": "7.17.0",
"@mantine/dropzone": "7.17.0",
"@mantine/form": "7.17.0",
"@mantine/hooks": "7.17.0",
"@mantine/modals": "7.17.0",
"@mantine/notifications": "7.17.0",
"@mantine/nprogress": "7.17.0",
"@mantine/tiptap": "7.17.0",
"@react-pdf/renderer": "^3.3.4",
"@react-router/node": "^7.1.5",
"@remix-run/node": "^2.8.1",
"@stripe/react-stripe-js": "^2.1.1",
"@stripe/stripe-js": "^1.54.1",
"@tabler/icons-react": "^2.44.0",
"@tanstack/react-query": "5.52.2",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"collect.js": "^4.36.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dayjs": "^1.11.8",
"express": "^4.19.2",
"liquidjs": "^10.21.0",
"qr-scanner": "^1.4.2",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-qr-code": "^2.0.12",
"react-router": "^7.1.5",
"react-router-dom": "^7.1.5",
"recharts": "2",
"sirv": "^2.0.4"
},
"devDependencies": {
"@lingui/cli": "^4.7.0",
"@lingui/vite-plugin": "^4.7.0",
"@swc/core": "1.3.105",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.38.0",
"eslint-plugin-lingui": "^0.2.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.24",
"postcss-preset-mantine": "^1.6.0",
"postcss-simple-vars": "^7.0.1",
"sass": "^1.63.4",
"typescript": "^5.0.2",
"vite": "^5.2.7",
"vite-bundle-visualizer": "^1.0.1",
"vite-plugin-copy": "^0.1.6"
}
}