-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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
71
72
73
74
75
76
77
78
{
"name": "router-hub-admin",
"version": "1.0.0",
"description": "Router Hub Admin for Alcatel Home/Zone Link devices",
"keywords": [
"router",
"hub",
"admin",
"alcatel",
"home",
"zone",
"link"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"trpc:build": "esbuild trpc-server/index.ts --bundle --platform=node --format=cjs --outdir=dist/trpc-server",
"trpc:watch": "tsx watch trpc-server/",
"trpc:start": "node dist/trpc-server/index.js"
},
"private": true,
"license": "MIT",
"dependencies": {
"@angular/animations": "^18.0.5",
"@angular/cdk": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/forms": "^18.0.5",
"@angular/material": "18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/router": "^18.0.5",
"@fastify/cors": "^9.0.1",
"@fastify/websocket": "^10.0.1",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"fastify": "^4.28.0",
"json-rpc-2.0": "^1.7.0",
"lodash-es": "^4.17.21",
"lucide": "^0.397.0",
"lucide-angular": "^0.397.0",
"node-fetch": "^3.3.2",
"rxjs": "~7.8.1",
"superjson": "^2.2.1",
"trpc-panel": "^1.3.4",
"tslib": "^2.6.3",
"ws": "^8.17.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular/cli": "^18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@tailwindcss/typography": "^0.5.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.19",
"esbuild": "^0.21.5",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.7",
"typescript": "~5.4.5"
},
"author": {
"name": "Yohan González Almaguer",
"email": "[email protected]",
"url": "https://github.com/ZahiriNatZuke"
},
"engines": {
"node": ">=18.0.0"
}
}