-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.71 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.71 KB
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
{
"name": "@localess/angular",
"version": "3.0.0",
"private": false,
"description": "Angular Library for Localess's API. ",
"keywords": [
"localess",
"sdk",
"api",
"client",
"angular",
"typescript"
],
"author": "Lessify",
"homepage": "https://github.com/Lessify/localess-angular",
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lessify/localess-angular.git"
},
"bugs": {
"url": "https://github.com/Lessify/localess-angular/issues"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:localess": "ng serve localess-angular",
"start:ssr": "ng serve angular-ssr",
"build": "ng build",
"build:localess": "ng build localess-angular",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:angular-ssr": "node dist/angular-ssr/server/server.mjs"
},
"dependencies": {
"@angular/animations": "^20.0.5",
"@angular/common": "^20.0.5",
"@angular/compiler": "^20.0.5",
"@angular/core": "^20.0.5",
"@angular/forms": "^20.0.5",
"@angular/platform-browser": "^20.0.5",
"@angular/platform-browser-dynamic": "^20.0.5",
"@angular/platform-server": "^20.0.5",
"@angular/router": "^20.0.5",
"@angular/ssr": "^20.0.4",
"@localess/client": "^3.0.0",
"@tiptap/extension-bold": "^2.27.2",
"@tiptap/extension-bullet-list": "^2.27.2",
"@tiptap/extension-code": "^2.27.2",
"@tiptap/extension-code-block-lowlight": "^2.27.2",
"@tiptap/extension-document": "^2.27.2",
"@tiptap/extension-heading": "^2.27.2",
"@tiptap/extension-history": "^2.27.2",
"@tiptap/extension-italic": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-list-item": "^2.27.2",
"@tiptap/extension-ordered-list": "^2.27.2",
"@tiptap/extension-paragraph": "^2.27.2",
"@tiptap/extension-strike": "^2.27.2",
"@tiptap/extension-text": "^2.27.2",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/html": "^2.27.2",
"express": "^4.18.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.4",
"@angular/cli": "^20.0.4",
"@angular/compiler-cli": "^20.0.5",
"@tailwindcss/postcss": "^4.0.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.0.0",
"jasmine-core": "~5.1.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": "^20.0.1",
"postcss": "^8.5.3",
"tailwindcss": "^4.2.1",
"typescript": "~5.8.3"
}
}