-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2 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
{
"name": "just-chat",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:electron": "ng build --base-href ./ && electron .",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"package": "ng build && electron-packager . --platform=win32 --arch=x64",
"test": "ng test"
},
"private": true,
"main": "main.js",
"type": "module",
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@chainsafe/libp2p-gossipsub": "^13.2.0",
"@chainsafe/libp2p-noise": "^15.1.2",
"@chainsafe/libp2p-yamux": "^6.0.2",
"@libp2p/autonat": "^1.1.5",
"@libp2p/bootstrap": "^10.1.5",
"@libp2p/circuit-relay-v2": "^1.1.5",
"@libp2p/identify": "^2.1.5",
"@libp2p/mplex": "^10.1.5",
"@libp2p/peer-id": "^4.2.4",
"@libp2p/pubsub": "^9.0.26",
"@libp2p/pubsub-peer-discovery": "^10.0.2",
"@libp2p/tcp": "^9.1.6",
"@libp2p/webrtc": "^4.1.10",
"@libp2p/webrtc-star": "^7.0.0",
"@libp2p/websockets": "^8.2.0",
"@libp2p/webtransport": "^4.1.9",
"html5-qrcode": "^2.3.8",
"libp2p": "^1.9.4",
"ngx-electronyzer": "^18.1.0",
"qrcode": "^1.5.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"yamux": "^0.0.3",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@electron/packager": "^18.3.4",
"@types/jasmine": "~5.1.0",
"@types/qrcode": "^1.5.5",
"electron": "^32.0.2",
"jasmine-core": "~5.2.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.5.2"
}
}