-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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
{
"name": "my-mapp",
"private": true,
"version": "0.0.0",
"main": "./public/electron.js",
"homepage": "/",
"scripts": {
"dev": "node src/swEnvBuild.js && vite",
"build": "node src/swEnvBuild.js && vite build",
"preview": "vite preview",
"electron-test": "electron .",
"test": "echo 'test1' && wait-on tcp:127.0.0.1:5173 && echo 'test'",
"electron": "tsc ./public/electron.ts && concurrently 'cross-env BROWSER=none npm run dev' 'echo 'Starting Waiton App' && wait-on tcp:127.0.0.1:5173 && echo 'Starting Electron App' && electron .'",
"electron-build": "tsc && vite build && electron-builder"
},
"dependencies": {
"@react-oauth/google": "^0.12.1",
"@stomp/stompjs": "^7.0.0",
"@types/js-cookie": "^3.0.6",
"@types/stompjs": "^2.3.9",
"axios": "^1.6.8",
"electron-is-dev": "^3.0.1",
"emoji-picker-react": "^4.11.1",
"express": "^4.19.2",
"firebase": "^10.13.2",
"http-proxy-middleware": "^3.0.0",
"js-cookie": "^3.0.5",
"react": "^18.2.0",
"react-apple-signin-auth": "^1.1.0",
"react-calendar": "^5.0.0",
"react-cookie": "^7.2.0",
"react-datepicker": "^7.5.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"stompjs": "^2.3.3",
"styled-components": "^6.1.8",
"swr": "^2.2.5",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.12.5",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.2.0",
"electron-builder": "^24.13.3",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-tsconfig-paths": "^4.3.2",
"wait-on": "^7.2.0"
}
}