-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
95 lines (95 loc) · 2.88 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
{
"name": "ngx-ui-tour",
"version": "0.0.1",
"private": true,
"description": "",
"keywords": [],
"author": "Isaac Mann <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/hakimio/ngx-ui-tour"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"libs/*"
],
"scripts": {
"ng": "ng",
"start:demo": "nx serve ngx-ui-tour-demo --no-hmr",
"build:demo": "nx build ngx-ui-tour-demo",
"start:lazy-tour": "nx serve lazy-tour-demo --no-hmr",
"build:lazy-tour": "nx build lazy-tour-demo",
"start:material-ui-demo": "nx serve material-ui-demo --no-hmr",
"build:material-ui-demo": "nx build material-ui-demo",
"build:lib:all": "nx run-many --target=build --projects=tag:libs",
"test": "nx test ngx-ui-tour-core",
"lint": "nx run-many --target=lint",
"release": "nx release",
"pub:all": "npm run pub:lib:all && npm run pub:demo",
"pub:demo": "nx publish ngx-ui-tour-demo",
"pub:lib:all": "nx run-many --target=publish --projects=tag:libs"
},
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/cdk": "^19.0.4",
"@angular/common": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/material": "^19.0.4",
"@angular/platform-browser": "^19.0.5",
"@angular/router": "^19.0.5",
"@ionic/angular": "^8.4.1",
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
"@ng-web-apis/common": "^4.11.1",
"@popperjs/core": "^2.11.8",
"@primeng/themes": "^19.0.2",
"@taiga-ui/addon-doc": "^4.18.0",
"@taiga-ui/cdk": "^4.18.0",
"@taiga-ui/core": "^4.18.0",
"@taiga-ui/event-plugins": "^4.3.1",
"@taiga-ui/icons": "^4.18.0",
"@taiga-ui/kit": "^4.18.0",
"@taiga-ui/legacy": "^4.18.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"bootstrap": "^5.3.3",
"ngx-bootstrap": "^19.0.1",
"ngx-highlightjs": "^10.0.0",
"primeicons": "^7.0.0",
"primeng": "^19.0.2",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-builders/jest": "^19.0.0-beta.1",
"@angular/build": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler": "^19.0.5",
"@angular/compiler-cli": "^19.0.5",
"@eslint/js": "^9.17.0",
"@nx/angular": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/workspace": "20.3.0",
"@schematics/angular": "^19.0.6",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"angular-eslint": "^19.0.2",
"eslint": "^9.17.0",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "~14.4.0",
"ng-packagr": "^19.0.1",
"nx": "20.3.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.18.2"
}
}