-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.84 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
92
{
"name": "standardkit-ui",
"version": "0.0.0",
"license": "Unlicense",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "npm run lint:prettier && npm run lint:stylelint && ng lint",
"lint:prettier": "prettier '**/*.{js,html,css,scss,md,yml,yaml,json}' --write",
"lint:stylelint": "stylelint '**/*.{css,scss}' --fix",
"lint:staged": "lint-staged",
"build": "npm run build:ui && npm run build:example",
"build:ui": "ng build ui",
"build:example": "ng build example",
"build:prepublish": "npm run build:ui && cp ./README.md dist/ui",
"test": "ng test",
"version:patch": "cd projects/ui && npm version patch",
"version:minor": "cd projects/ui && npm version minor",
"version:major": "cd projects/ui && npm version major",
"prerelease": "npm run build && npm run test",
"release:patch": "npm run prerelease && npm run version:patch && npm run commit-tag-push && npm run publish:ui",
"release:minor": "npm run prerelease && npm run version:minor && npm run commit-tag-push && npm run publish:ui",
"release:major": "npm run prerelease && npm run version:major && npm run commit-tag-push && npm run publish:ui",
"publish:ui": "npm run build:prepublish && cd dist/ui && npm publish && cd ../../ npm run postpublish:ui",
"add-package-json": "git add projects/ui/package.json",
"commit": "version=$(node -p \"require('./projects/ui/package.json').version\") && git commit -m \"Release v$version\"",
"tag": "version=$(node -p \"require('./projects/ui/package.json').version\") && git tag -a \"v$version\" -m \"Version $version\"",
"push": "git push && git push --tags",
"commit-tag-push": "npm run add-package-json && npm run commit && npm run tag && npm run push",
"hooks:pre-commit": "npm run lint:staged",
"hooks:pre-push": "npm run test"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/router": "^19.0.5",
"@fortawesome/fontawesome-free": "^6.5.1",
"@standardkit/core": "^0.2.4",
"fuse.js": "^7.0.0",
"normalize.css": "^8.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "~19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@smarttools/eslint-plugin-rxjs": "1.0.9",
"@types/jasmine": "~5.1.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"angular-eslint": "^19.0.2",
"auto-changelog": "^2.5.0",
"eslint": "~9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.3.0",
"ng-packagr": "^19.0.1",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-concentric-order": "^5.2.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.1",
"ts-jest": "^29.2.5",
"typescript": "~5.5.4",
"typescript-eslint": "^8.19.0"
}
}