forked from vmware-clarity/ng-clarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 6.02 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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@clr/angular",
"private": true,
"engines": {
"yarn": "please-use-npm",
"node": ">=16.0.0",
"npm": ">=7.10.0"
},
"scripts": {
"build": "npm-run-all _build:angular _build:ui _build:storybook _build:demo",
"build:ci": "npm-run-all clean lint build test public-api:check",
"clean": "rimraf dist",
"commit": "cz --signoff",
"docs:json": "compodoc -p ./projects/angular/tsconfig.lib.json -e json -d .",
"docs:json:watch": "npm run --silent docs:json -- --serve --watch",
"lint": "npm-run-all _lint:code _lint:styles _lint:format",
"lint:fix": "npm-run-all _lint:code:fix _lint:styles:fix _lint:format:fix",
"lint:changed": "npm-run-all _lint:code:changed _lint:styles:changed _lint:format:changed",
"lint:changed:fix": "npm-run-all _lint:code:changed:fix _lint:styles:changed:fix _lint:format:changed:fix",
"prepare": "husky install && patch-package",
"preview": "semantic-release --plugins \"@semantic-release/commit-analyzer\" \"@semantic-release/release-notes-generator\" --dry-run --no-ci",
"public-api:check": "api-extractor run",
"public-api:update": "api-extractor run --local",
"start": "npm run clean && npm-run-all --parallel docs:json:watch _build:ui:css:watch _start:storybook",
"start:demo": "npm run clean && ng serve clr-demo",
"test": "ng test clr-angular --source-map=false --watch=false",
"test:watch": "npm run --silent test -- --watch",
"_build:angular": "ng build clr-angular --configuration production",
"_build:demo": "ng build clr-demo --configuration production",
"_build:storybook": "npm run docs:json && build-storybook --output-dir ./dist/docs",
"_build:ui:css": "sass ./projects/ui/src:./dist/clr-ui --precision=8",
"_build:ui:css:watch": "npm run --silent _build:ui:css -- --watch",
"_build:ui:prefix": "postcss ./dist/clr-ui/clr-ui.css ./dist/clr-ui/clr-ui-dark.css --use autoprefixer --dir ./dist/clr-ui",
"_build:ui:optimize": "csso ./dist/clr-ui/clr-ui.css --output ./dist/clr-ui/clr-ui.min.css --source-map file --no-restructure && csso ./dist/clr-ui/clr-ui-dark.css --output ./dist/clr-ui/clr-ui-dark.min.css --source-map file --no-restructure",
"_build:ui:src": "cpy \"**/*.scss\" ./../../dist/clr-ui --cwd=./projects/angular --parents",
"_build:ui:package": "cpy ./projects/ui/package.json ./projects/ui/README.md ./dist/clr-ui",
"_build:ui": "npm-run-all _build:ui:css _build:ui:prefix _build:ui:optimize _build:ui:src _build:ui:package",
"_lint:code": "eslint . --ext .js,.json,.ts",
"_lint:code:fix": "npm run --silent _lint:code -- --fix",
"_lint:code:changed": "node ./scripts/get-changed-files.js --command \"eslint\" --filter \"**/*.{js,json,ts}\"",
"_lint:code:changed:fix": "node ./scripts/get-changed-files.js --command \"eslint --fix\" --filter \"**/*.{js,json,ts}\"",
"_lint:format": "prettier . --check --loglevel warn",
"_lint:format:fix": "npm run --silent _lint:format -- --write",
"_lint:format:changed": "node ./scripts/get-changed-files.js --command \"prettier --check --loglevel warn --ignore-unknown\" --filter \"**\"",
"_lint:format:changed:fix": "node ./scripts/get-changed-files.js --command \"prettier --write --loglevel warn --ignore-unknown\" --filter \"**\"",
"_lint:styles": "stylelint \"**/*.{css,scss,sass}\" \"**/.*/**/*.{css,scss,sass}\"",
"_lint:styles:fix": "npm run --silent _lint:styles -- --fix",
"_lint:styles:changed": "node ./scripts/get-changed-files.js --command \"stylelint\" --filter \"**/*.{css,scss,sass}\"",
"_lint:styles:changed:fix": "node ./scripts/get-changed-files.js --command \"stylelint --fix\" --filter \"**/*.{css,scss,sass}\"",
"_start:storybook": "wait-on ./documentation.json ./dist/clr-ui/clr-ui.css && start-storybook -p 6006"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "3.5.0",
"@angular-devkit/build-angular": "13.3.9",
"@angular/animations": "13.3.11",
"@angular/cli": "13.3.9",
"@angular/common": "13.3.11",
"@angular/compiler": "13.3.11",
"@angular/compiler-cli": "13.3.11",
"@angular/core": "13.3.11",
"@angular/forms": "13.3.11",
"@angular/platform-browser": "13.3.11",
"@angular/platform-browser-dynamic": "13.3.11",
"@angular/router": "13.3.11",
"@cds/core": "6.0.1",
"@commitlint/cz-commitlint": "16.2.3",
"@compodoc/compodoc": "1.1.19",
"@microsoft/api-extractor": "7.19.4",
"@storybook/addon-a11y": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/angular": "6.5.10",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@types/jasmine": "3.6.11",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"commitizen": "4.2.4",
"commitlint": "16.2.3",
"cpy-cli": "3.1.1",
"csso-cli": "3.0.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jasmine": "4.1.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-license-header": "0.4.0",
"eslint-plugin-storybook": "0.5.12",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "7.0.4",
"jasmine-core": "3.10.1",
"jasmine-expect": "5.0.0",
"karma": "6.3.17",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"karma-mocha-reporter": "2.2.5",
"karma-parallel": "0.3.1",
"lint-staged": "12.3.7",
"ng-let": "13.0.6",
"ng-packagr": "13.3.1",
"npm-run-all": "4.1.5",
"patch-package": "6.4.7",
"postcss-cli": "8.3.1",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"semantic-release": "19.0.3",
"semantic-release-slack-bot": "3.5.2",
"stylelint": "14.6.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recommended-scss": "5.0.2",
"stylelint-plugin-license-header": "1.0.3",
"tsconfig-paths-webpack-plugin": "3.5.2",
"tslib": "2.3.1",
"typescript": "4.4.4",
"wait-on": "6.0.1",
"zone.js": "0.11.5"
}
}