-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
91 lines (91 loc) · 2.54 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
{
"name": "angular-shepherd",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:shepherd-pro/angular-shepherd.git"
},
"scripts": {
"build": "ng build",
"build_lib": "ng build shepherd",
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"npm_pack": "cd dist/angular-shepherd && npm pack",
"package": "npm run build_lib && npm run npm_pack",
"start": "ng serve",
"test": "ng test"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"core-js": "^3.38.1",
"rxjs": "^7.8.1",
"shepherd.js": "^11.2.0",
"tslib": "^2.8.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.10",
"@angular-devkit/core": "^18.2.8",
"@angular-devkit/schematics": "^18.2.10",
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/eslint-plugin": "18.4.0",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/schematics": "18.4.0",
"@angular-eslint/template-parser": "18.4.0",
"@angular/cli": "18.2.7",
"@angular/compiler-cli": "^18.0.0",
"@angular/language-service": "^18.2.7",
"@angular/router": "^18.0.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@release-it/bumper": "^6.0.1",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "7.18",
"@typescript-eslint/parser": "7.18",
"eslint": "^8.57.1",
"jasmine-core": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.2.1",
"protractor": "~7.0.0",
"release-it": "^17.7.0",
"ts-node": "~10.9.2",
"typescript": "~5.4.5"
},
"volta": {
"node": "20.15.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it/bumper": {
"out": "projects/shepherd/package.json"
},
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
}
}