-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build",
"server": "ts-node ./server",
"server:prod": "cross-env NODE_ENV=production ts-node ./server",
"vite-tauri": "vite-tauri"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@mantine/core": "^5.0.2",
"@mantine/dates": "^5.0.2",
"@mantine/dropzone": "^5.0.2",
"@mantine/form": "^5.0.2",
"@mantine/hooks": "^5.0.2",
"@mantine/modals": "^5.0.2",
"@mantine/notifications": "^5.0.2",
"@tabler/icons": "^1.78.1",
"@tauri-apps/api": "^1.0.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@vitejs/plugin-react": "^1.3.2",
"async-mutex": "^0.3.2",
"axios": "^0.27.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jwt-decode": "^3.1.2",
"next-auth": "^4.10.3",
"node-fetch": "^3.2.10",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sirv": "^2.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vite": "^2.9.14",
"vite-plugin-ssr": "^0.4.17"
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.5",
"@types/cookie-parser": "^1.4.3",
"vite-plugin-tauri": "^2.2.0"
}
}