forked from Laserfiche/lf-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 4.31 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
{
"name": "lf-ui-components",
"version": "14.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Laserfiche/lf-ui-components"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build-lf-documentation-dev": "npm run sass-lf && npm run sass-ms && ng build lf-documentation --configuration development --delete-output-path false",
"build-lf-documentation-dev-watch": "npm run sass-lf && npm run sass-ms && ng build lf-documentation --configuration development --delete-output-path false --watch",
"build-lf-documentation-prod": "ng build lf-documentation --configuration production --output-hashing=none",
"build-lf-cdn-prod": "ng build lf-cdn --configuration production --output-hashing=none",
"build-ui-components-prod": "ng build ui-components --configuration production",
"build-ui-components-dev": "ng build ui-components --configuration development",
"build-ui-components-dev-watch": "ng build ui-components --configuration development --watch",
"test": "ng test",
"test:ci": "ng test --watch=false --browsers=ChromeHeadless --reporters='junit,progress'",
"lint": "ng lint",
"tsc-cdn": "tsc --project ./projects/lf-cdn/tsconfig.app.json",
"api-extractor": "api-extractor run --local",
"sass-lf": "sass projects/styles/lf-laserfiche-lite/lf-laserfiche-lite.scss:dist/lf-documentation/lf-laserfiche-lite.css",
"sass-ms": "sass projects/styles/lf-ms-office/lf-ms-office-lite.scss:dist/lf-documentation/lf-ms-office-lite.css",
"concat-lf-cdn": "gulp concatLfCdnToScript",
"concat-lf-documentation": "gulp concatLfDocumentationToScript",
"rename-cdn-webpack-chunk": "gulp renameRuntimeWebpackChunk && gulp renamePolyfillsWebpackChunk && gulp renameMainWebpackChunk",
"create-lf-cdn": "npm run build-lf-cdn-prod && npm run rename-cdn-webpack-chunk && npm run concat-lf-cdn",
"move-enums-to-types-linux": "cp ./dist/ui-components/esm2020/shared/enums.mjs ./types-lf-ui-components-publish/index.js",
"move-enums-to-types-windows": "copy .\\dist\\ui-components\\esm2020\\shared\\enums.mjs .\\types-lf-ui-components-publish\\index.js",
"move-enums-to-types": "npm run move-enums-to-types-linux || npm run move-enums-to-types-windows",
"create-types-lf-ui-components": "npm run tsc-cdn && npm run api-extractor && gulp processTypesFile && npm run move-enums-to-types && cd ./types-lf-ui-components-publish && npm pack"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.10",
"@angular-eslint/builder": "^14.4.0",
"@angular-eslint/eslint-plugin": "^14.4.0",
"@angular-eslint/eslint-plugin-template": "^14.4.0",
"@angular-eslint/schematics": "^14.4.0",
"@angular-eslint/template-parser": "^14.4.0",
"@microsoft/api-extractor": "^7.18.11",
"@types/jasmine": "^3.6.0",
"@types/node": "^16.18.11",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^7.26.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-replace": "^1.1.3",
"jasmine-core": "^4.1.0",
"karma": "6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-junit-reporter": "^2.0.1",
"ng-packagr": "^14.2.2",
"puppeteer": "^14.1.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"yargs": "^17.1.0"
},
"peerDependencies": {
"@angular-material-components/datetime-picker": "^8.0.0",
"@angular-material-components/moment-adapter": "^8.0.0",
"@angular/animations": "^14.2.12",
"@angular/cdk": "^14.2.7",
"@angular/cli": "^14.2.10",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/compiler-cli": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/elements": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/material": "^14.2.7",
"@angular/material-moment-adapter": "^14.2.7",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/router": "^14.2.12",
"@laserfiche/lf-api-client-core": "^1.1.3",
"@laserfiche/lf-js-utils": "^4.0.7",
"@laserfiche/lf-resource-library": "^4.0.6",
"ngx-mask": "^14.2.4",
"rxjs": "^7.8.0",
"zone.js": "^0.11.4"
}
}