-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.12 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
70
{
"name": "chat-v2",
"productName": "Chat v2",
"version": "2.0.0",
"description": "Chat client (heavily) inspired by discord",
"author": "Jack Weller",
"keywords": [
"discord",
"clone"
],
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "concurrently --names \"REACT,ELECTRON\" -c \"bgBlue.bold,bgMagenta.bold\" -k \"vite --port 3000\" \"electron-forge start\" --kill-others",
"dev": "vite",
"build": "vite build",
"initialize-firebase": "node ./commands/initializeFirebase.js",
"create-user": "node ./commands/createUser.js",
"create-server": "node ./commands/createServer.js"
},
"dependencies": {
"@prettier/sync": "^0.5.1",
"axios": "^1.7.7",
"electron-squirrel-startup": "^1.0.1",
"firebase": "^10.11.0",
"moment": "^2.30.1",
"prompt-sync": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-firebase-hooks": "^5.1.1",
"react-moment": "^1.1.3",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"react-string-replace": "^1.1.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-fuses": "^7.5.0",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.11.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"concurrently": "^7.6.0",
"electron": "^29.3.0",
"eslint": "^9.11.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"prettier": "3.3.3",
"vite": "^5.4.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackwellerreal/chat.git"
},
"bugs": {
"url": "https://github.com/jackwellerreal/chat/issues"
},
"homepage": "https://github.com/jackwellerreal/chat#readme",
"build": {
"appId": "com.jackweller.chat"
}
}