forked from po-ui/po-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 7.8 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "po-ui-sources",
"version": "16.11.1",
"description": "PO UI",
"homepage": "https://po-ui.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/po-ui/po-angular"
},
"scripts": {
"ng": "ng",
"tsc": "tsc",
"start": "ng serve",
"lint": "ng lint --format=stylish",
"lint:storage": "ng lint storage --format=stylish",
"lint:sync": "ng lint sync --format=stylish",
"lint:ui": "ng lint ui --format=stylish",
"lint:templates": "ng lint templates --format=stylish",
"lint:code-editor": "ng lint code-editor --format=stylish",
"e2e": "ng e2e",
"test": "ng test --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:schematics": "npm run test:storage:schematics && npm run test:ui:schematics && npm run test:sync:schematics && npm run test:templates:schematics && npm run test:code-editor:schematics",
"test:storage": "ng test storage --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:storage:schematics": "gulp build:schematics --lib storage && jasmine \"dist/ng-storage/schematics/**/*.spec.js\"",
"test:sync": "ng test sync --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:sync:schematics": "gulp build:schematics --lib sync && jasmine \"dist/ng-sync/schematics/**/*.spec.js\"",
"test:sync:browse": "ng test sync --code-coverage --browsers=Chrome --source-map",
"test:ui": "ng test ui --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:ui:schematics": "gulp build:schematics --lib ui && jasmine \"./dist/ng-components/schematics/**/*.spec.js\"",
"test:ui:browse": "ng test ui --code-coverage --browsers=Chrome --source-map",
"test:templates": "ng test templates --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:templates:schematics": "gulp build:schematics --lib templates && jasmine \"dist/ng-templates/schematics/**/*.spec.js\"",
"test:templates:browse": "ng test templates --code-coverage --browsers=Chrome --source-map",
"test:code-editor": "ng test code-editor --watch=false --code-coverage --browsers=ChromeHeadless --source-map",
"test:code-editor:schematics": "gulp build:schematics --lib code-editor && jasmine \"dist/ng-code-editor/schematics/**/*.spec.js\"",
"test:code-editor:browse": "ng test code-editor --code-coverage --browsers=Chrome --source-map",
"test:dev": "ng test --browsers=ChromeHeadless",
"build:schematics": "cd ./projects/schematics && npm run build",
"build:ui": "ng build ui --configuration production && gulp build:schematics --lib ui && gulp replaceVersion && cd dist/ng-components && npm pack",
"build:ui:lite": "ng build ui --configuration production",
"build:code-editor": "ng build code-editor --configuration production && gulp build:schematics --lib code-editor && gulp replaceVersion && cd dist/ng-code-editor && npm pack",
"build:templates": "ng build templates --configuration production && gulp build:schematics --lib templates && gulp replaceVersion && cd dist/ng-templates && npm pack",
"build:storage": "ng build storage --configuration production && gulp build:schematics --lib storage && gulp replaceVersion && cd dist/ng-storage && npm pack",
"build:storage:lite": "ng build storage --configuration production",
"build:sync": "ng build sync --configuration production && gulp build:schematics --lib sync && gulp replaceVersion && cd dist/ng-sync && npm pack",
"build": "npm run build:schematics && npm run build:ui && npm run build:templates && npm run build:storage && npm run build:sync && npm run build:code-editor",
"build:portal:prod": "ng build portal --configuration production --build-optimizer=false",
"build:portal": "npm run build:ui && npm run build:templates && npm run build:code-editor && npm run build:portal:docs",
"build:portal:docs": "cd projects/portal && gulp build",
"release": "standard-version --preset angular",
"sonarqube": "gulp sonarqube",
"format:fix": "pretty-quick --staged",
"format:check": "prettier --check --loglevel error \"**/*{.ts,.js,.json,.css,.scss,.html}\"",
"format:all": "prettier --write \"**/*{.ts,.js,.json,.css,.scss,.html}\"",
"publish:ui:local": "npm publish ./dist/ng-components --registry http://localhost:4873 --ignore-scripts",
"publish:templates:local": "npm publish ./dist/ng-templates --registry http://localhost:4873 --ignore-scripts",
"publish:sync:local": "npm publish ./dist/ng-sync --registry http://localhost:4873 --ignore-scripts",
"publish:storage:local": "npm publish ./dist/ng-storage --registry http://localhost:4873 --ignore-scripts",
"publish:code-editor:local": "npm publish ./dist/ng-code-editor --registry http://localhost:4873 --ignore-scripts",
"publish:schematics:local": "npm publish ./dist/ng-schematics --registry http://localhost:4873 --ignore-scripts",
"publish:local": "npm run publish:schematics:local && npm run publish:ui:local && npm run publish:templates:local && npm run publish:code-editor:local && npm run publish:sync:local && npm run publish:storage:local"
},
"private": true,
"dependencies": {
"@angular/animations": "~16.2.0",
"@angular/cdk": "~16.2.0",
"@angular/common": "~16.2.0",
"@angular/compiler": "~16.2.0",
"@angular/core": "~16.2.0",
"@angular/forms": "~16.2.0",
"@angular/platform-browser": "~16.2.0",
"@angular/platform-browser-dynamic": "~16.2.0",
"@angular/router": "~16.2.0",
"@capacitor/core": "4.6.3",
"@capacitor/network": "^4.1.0",
"@po-ui/style": "16.11.0",
"capitalize": "^2.0.3",
"colors": "1.4.0",
"core-js": "3.13.0",
"custom-idle-queue": "2.1.2",
"eslint-plugin-sonarjs": "^0.13.0",
"gulp-clean": "^0.4.0",
"gulp-run": "^1.7.1",
"highlight.js": "^10.7.2",
"http-status-codes": "^2.1.4",
"localforage": "1.9.0",
"lokijs": "1.5.12",
"monaco-editor": "0.24.0",
"ngx-markdown": "~16.0.0",
"run-sequence": "^2.2.1",
"rxjs": "~7.5.5",
"rxjs-compat": "~6.6.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.2.0",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "~16.1.1",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "~16.2.0",
"@angular/language-service": "~16.2.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@po-ui/ng-schematics": "^15.0.0",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.9",
"@types/node": "^14.0.0",
"@types/resize-observer-browser": "^0.1.5",
"@types/systemjs": "^6.1.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"del": "^6.0.0",
"dgeni": "^0.4.14",
"dgeni-packages": "0.26.12",
"eslint": "^8.18.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-react": "latest",
"gulp": "^4.0.2",
"gulp-tap": "^2.0.0",
"husky": "^4.2.3",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"mkdirp": "0.5.5",
"ng-packagr": "~16.2.0",
"prettier": "2.2.0",
"pretty-quick": "^3.1.0",
"protractor": "~7.0.0",
"rollup": "2.50.2",
"sonarjs": "latest",
"sonarqube-scanner": "^2.8.0",
"standard-version": "^9.3.0",
"ts-node": "~10.0.0",
"typemoq": "^2.1.0",
"typescript": "~5.1.6"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}