-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
116 lines (116 loc) · 3.96 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "elementar-admin",
"description": "Elementar Admin - Free and open source Angular admin panel based on Material 3 and Tailwind",
"version": "0.0.0",
"license": "MIT",
"bugs": {
"url": "https://github.com/elementarlabs/elementar-admin/issues"
},
"homepage": "https://elementarui.com",
"keywords": [
"elementar admin",
"angular admin",
"admin panel",
"angular dashboard",
"angular admin panel",
"angular material components",
"angular admin template"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"build:components:prod": "ng build components --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:elementar-admin": "node dist/elementar-admin/server/server.mjs",
"start:demo": "ng serve --no-hmr demo",
"build:demo": "ng build demo",
"build:demo:prod": "ng build demo --configuration production",
"serve:ssr:demo": "node dist/demo/server/server.mjs",
"start:mono": "ng serve mono",
"build:mono": "ng build mono",
"build:mono:prod": "ng build mono --configuration production",
"serve:ssr:mono": "node dist/mono/server/server.mjs",
"start:dual-tier": "ng serve dual-tier",
"build:dual-tier": "ng build dual-tier",
"build:dual-tier:prod": "ng build dual-tier --configuration production",
"serve:ssr:dual-tier": "node dist/dual-tier/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/cdk": "^19.1.1",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/material": "19.1.1",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/platform-server": "^19.1.3",
"@angular/router": "^19.1.3",
"@angular/ssr": "^19.1.4",
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@iconify-json/circle-flags": "^1.2.4",
"@iconify-json/ph": "^1.2.2",
"@ngrx/signals": "^19.0.0",
"@ngrx/store": "^19.0.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tiptap/core": "2.10.2",
"@tiptap/extension-bubble-menu": "2.10.2",
"@tiptap/extension-code-block": "2.10.2",
"@tiptap/extension-dropcursor": "2.10.2",
"@tiptap/extension-floating-menu": "2.10.2",
"@tiptap/extension-history": "2.10.2",
"@tiptap/extension-horizontal-rule": "2.10.3",
"@tiptap/extension-image": "2.10.2",
"@tiptap/extension-link": "2.10.2",
"@tiptap/extension-list-item": "2.10.2",
"@tiptap/extension-ordered-list": "2.10.2",
"@tiptap/extension-placeholder": "2.10.2",
"@tiptap/extension-youtube": "2.10.2",
"@tiptap/pm": "2.10.2",
"@tiptap/starter-kit": "2.10.2",
"awesome-phonenumber": "^6.12.0",
"d3": "^7.9.0",
"echarts": "^5.5.0",
"emoji-toolkit": "^8.0.0",
"express": "^4.18.2",
"iconify-icon": "^2.3.0",
"libphonenumber-js": "^1.11.15",
"marked": "^15.0.2",
"material-symbols": "^0.27.1",
"ngx-markdown": "^19.0.0",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.4",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@angular/localize": "^19.1.3",
"@tailwindcss/typography": "^0.5.10",
"@types/d3": "^7.4.3",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.17",
"jasmine-core": "~5.4.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",
"ng-packagr": "^19.0.1",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.13",
"typescript": "~5.6.2"
}
}