forked from BioPhoton/angular-star-rating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4 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
{
"name": "angular-star-rating-workspace",
"version": "7.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "ng-packagr -p libs/angular-star-rating/ng-package.json && npm run copy:lib-assets && npm run copy:assets",
"build:github-page": "ng build --configuration=production --output-path docs --base-href /angular-star-rating/",
"copy:lib-assets": "copyfiles -u 3 ./libs/angular-star-rating/src/assets/**/* ./@packaged/angular-star-rating",
"copy:assets": "copyfiles -u 0 README.md ./@packaged/angular-star-rating && copyfiles -u 0 ./LICENSE.txt ./@packaged/angular-star-rating && copyfiles -u 0 ./CHANGELOG.md ./@packaged/angular-star-rating",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"nx": "nx",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nx/workspace",
"update:check": "ng update",
"dep-graph": "nx dep-graph",
"update:skip": "nx update skip",
"workspace-schematic": "nx workspace-schematic",
"help": "nx help",
"postinstall": "node ./decorate-angular-cli.js",
"docs": "npm run docs:build",
"docs:build": "compodoc -p ./src/tsconfig.api-doc.json -n angular-star-rating -d docs/api-doc/ --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"release:git-changelog": "standard-version --first-release",
"recommended-bump": "npx conventional-recommended-bump -p angular",
"release": "node ./chore/scripts/release",
"github-release": "node ./chore/scripts/tasks/release-github",
"release:lib": "npm publish ./@packaged/angular-star-rating"
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.8",
"@angular/common": "16.2.8",
"@angular/compiler": "16.2.8",
"@angular/core": "16.2.8",
"@angular/forms": "16.2.8",
"@angular/platform-browser": "16.2.8",
"@angular/platform-browser-dynamic": "16.2.8",
"@angular/router": "16.2.8",
"@nx/angular": "16.10.0",
"bootstrap": "^5.2.0-beta1",
"core-js": "3.8.3",
"css-star-rating": "^1.3.1",
"fontawesome": "^4.7.2",
"ngrx-store-freeze": "^0.2.1",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.0.0-rc.0",
"tslib": "^2.3.1",
"zone.js": "0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.5",
"@angular-devkit/core": "16.2.5",
"@angular-devkit/schematics": "16.2.5",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "16.2.8",
"@angular/language-service": "16.2.8",
"@nx/cypress": "16.10.0",
"@nx/eslint-plugin": "16.10.0",
"@nx/jest": "16.10.0",
"@nx/linter": "16.10.0",
"@nx/workspace": "16.10.0",
"@schematics/angular": "16.2.5",
"@types/jest": "29.5.0",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"codelyzer": "6.0.2",
"compare-func": "^1.3.2",
"copyfiles": "2.4.1",
"cosmiconfig": "^7.0.1",
"cypress": "^8.3.1",
"eslint": "8.46.0",
"eslint-config-prettier": "^8.5.0",
"github-url-from-git": "^1.5.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-preset-angular": "13.1.2",
"ng-packagr": "16.2.3",
"nx": "16.10.0",
"postcss": "^8.3.6",
"prettier": "2.6.2",
"standard-version": "^9.3.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}