-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
{
"name": "@frxjs/ngx-timeline",
"version": "19.0.2",
"keywords": [
"angular",
"timeline"
],
"repository": {
"url": "https://github.com/emanuelefricano93/frxjs-Ngx-Timeline"
},
"author": {
"name": "Emanuele Fricano",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build-lib": "ng build ngx-timeline",
"build-app": "ng build demo-app",
"build:prod": "ng build ngx-timeline --configuration production",
"watch-lib": "ng build ngx-timeline --watch --configuration production",
"start-dev": "npm run link && npm run link-lib && npm run start",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "npm rum lint -- --fix",
"e2e": "ng e2e",
"link": "cd dist/ngx-timeline && npm link",
"link-lib": "npm link @frxjs/ngx-timeline",
"prepare-github-pages": "sh scripts/prepare-github-pages.sh",
"new-version": "npm version --git-tag-version=false",
"version": "echo 'starting postversion script'",
"postversion": "sh scripts/postversion.sh",
"publish": "sh scripts/publish.sh",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": false,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/localize": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/cdk": "^19.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.0.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.1",
"@angular-eslint/builder": "^19.0.0",
"@angular-eslint/eslint-plugin": "^19.0.0",
"@angular-eslint/eslint-plugin-template": "^19.0.0",
"@angular-eslint/schematics": "^19.0.0",
"@angular-eslint/template-parser": "^19.0.0",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@cypress/schematic": "^2.5.2",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"cypress": "^13.12.0",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jasmine-core": "~5.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.0.1",
"ts-node": "~10.9.1",
"typescript": "~5.6.3"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "20.1.4",
"@nx/nx-darwin-x64": "20.1.4",
"@nx/nx-linux-x64-gnu": "20.1.4",
"@nx/nx-win32-x64-msvc": "20.1.4"
}
}