Skip to content
Snippets Groups Projects
package.json 8.2 KiB
Newer Older
vitam-prg's avatar
vitam-prg committed
{
  "name": "vitamui-ui",
  "version": "1.1.0-SNAPSHOT",
vitam-prg's avatar
vitam-prg committed
  "license": "MIT",
  "pki": {
    "path": "../../dev-deployment/environments/certs/server/hosts/localhost",
    "asset": "reverse"
  },
vitam-prg's avatar
vitam-prg committed
  "scripts": {
    "ng": "ng",
    "ng-high-memory": "node --max_old_space_size=4000 ./node_modules/@angular/cli/bin/ng",
    "start": "ng serve --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:en": "ng serve --proxy-config proxy.conf.json  --configuration=en --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:demo": "ng serve demo --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:portal": "ng serve portal --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:starter-kit": "ng serve --proxy-config proxy.conf.json starter-kit --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:identity": "ng serve identity --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:referential": "ng serve referential --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
    "start:ingest": "ng serve ingest --proxy-config proxy.conf.json --disable-host-check --ssl --ssl-key $npm_package_pki_path/$npm_package_pki_asset.key --ssl-cert $npm_package_pki_path/$npm_package_pki_asset.crt",
vitam-prg's avatar
vitam-prg committed
    "build": "ng build --prod --i18n-locale fr --build-optimizer=false --optimization=false",
    "build:prod": "export NODE_OPTIONS=--max_old_space_size=4096; ng build --prod --i18n-locale fr --output-path ../../../target/www",
    "build:dev": "ng build --prod --i18n-locale fr --build-optimizer=false --optimization=false",
    "build:fr": "ng build --prod --i18n-locale fr --output-path ../../../target/www/fr",
    "build:en": "ng build --prod --i18n-file src/locale/messages.en.xlf --i18n-format xlf --i18n-locale en --output-path ../../../target/www/en",
    "build:all": "npm run build:fr && npm run build:en",
    "build:demo": "ng build demo --prod --i18n-locale fr",
    "build:portal": "export NODE_OPTIONS=--max_old_space_size=4096; ng build portal --prod",
vitam-prg's avatar
vitam-prg committed
    "build:identity": "export NODE_OPTIONS=--max_old_space_size=4096; ng build identity --prod --i18n-locale fr",
    "build:ingest": "export NODE_OPTIONS=--max_old_space_size=4096; ng build ingest --prod --i18n-locale fr",
benemart's avatar
benemart committed
    "build:referential": "export NODE_OPTIONS=--max_old_space_size=4096; ng build referential --prod --i18n-locale fr",
    "analyze-portal": "ng build portal --stats-json --prod ; webpack-bundle-analyzer dist/portal/stats-es2015.json",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "analyze-identity": "ng build identity --stats-json --prod --i18n-locale fr ; webpack-bundle-analyzer dist/identity/stats-es2015.json",
    "analyze-referential": "ng build referential --stats-json --prod --i18n-locale fr ; webpack-bundle-analyzer dist/referential/stats-es2015.json",
    "analyze-ingest": "ng build ingest --stats-json --prod --i18n-locale fr ; webpack-bundle-analyzer dist/ingest/stats-es2015.json",
vitam-prg's avatar
vitam-prg committed
    "test": "ng test --watch=false",
    "test:demo": "ng test demo --watch=false",
    "test:portal": "ng test portal --watch=false",
    "test:identity": "ng test identity --watch=false",
    "test:ingest": "ng test ingest --watch=false",
benemart's avatar
benemart committed
    "test:referential": "ng test referential --watch=false",
    "test:vitamui-library": "ng test vitamui-library --watch=false",
vitam-prg's avatar
vitam-prg committed
    "test:conf-ci": "ng test --watch=false --karma-config=karma.conf.ci.js",
    "test:sonar": "ng test --code-coverage --watch=false",
    "lint": "ng lint --format=stylish",
    "lint:demo": "ng lint demo --format=stylish",
    "lint:identity": "ng lint identity --format=stylish",
    "lint:ingest": "ng lint ingest --format=stylish",
vitam-prg's avatar
vitam-prg committed
    "lint:portal": "ng lint portal --format=stylish",
    "e2e": "ng e2e",
    "i18n-extract": "ng xi18n --outputPath=locale --i18n-locale=fr",
    "i18n-merge": "xliffmerge --profile xliffmerge.json fr en",
    "i18n:identity": "ng xi18n identity --outputPath=src/locale --i18n-locale=fr && xliffmerge --profile projects/identity/xliffmerge.json fr en",
    "i18n:ingest": "ng xi18n ingest --outputPath=src/locale --i18n-locale=fr && xliffmerge --profile projects/ingest/xliffmerge.json fr en",
benemart's avatar
benemart committed
    "i18n:referential": "ng xi18n referential --outputPath=src/locale --i18n-locale=fr && xliffmerge --profile projects/referential/xliffmerge.json fr en",
vitam-prg's avatar
vitam-prg committed
    "check:demo": "npm run lint:demo && npm run build:demo",
    "check:portal": "npm run lint:portal && npm run test:portal && npm run build:portal",
benemart's avatar
benemart committed
    "check:identity": "npm run lint:identity && npm run test:identity && npm run build:identity",
    "extract-translations": "ngx-translate-extract --input ./projects/portal/src --output ./projects/portal/src/assets/i18n/*.json --sort --format namespaced-json --key-as-default-value",
benemart's avatar
benemart committed
    "check:referential": "npm run lint:referential && npm run test:referential && npm run build:referential",
    "copy-scss:vitamui-library": "cp-cli ./projects/vitamui-library/src/sass ./dist/sass",
    "build:vitamui-library": "ng build vitamui-library",
    "watch:vitamui-library": "ng build vitamui-library --watch"
vitam-prg's avatar
vitam-prg committed
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "10.1.3",
    "@angular/cdk": "^10.1.3",
    "@angular/common": "10.1.3",
    "@angular/compiler": "10.1.3",
    "@angular/core": "10.1.3",
    "@angular/forms": "10.1.3",
    "@angular/material": "^10.1.3",
    "@angular/platform-browser": "10.1.3",
    "@angular/platform-browser-dynamic": "10.1.3",
    "@angular/pwa": "^0.803.29",
    "@angular/router": "10.1.3",
    "@angular/service-worker": "10.1.3",
    "@ngx-translate/core": "^12.1.2",
    "@ngx-translate/http-loader": "^6.0.0",
    "@types/uuid": "^7.0.0",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "bootstrap": "^4.5.0",
    "bufferutil": "^4.0.1",
vitam-prg's avatar
vitam-prg committed
    "classlist.js": "^1.1.20150312",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "core-js": "^2.6.11",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "hammerjs": "^2.0.8",
    "jquery": "^3.5.1",
vitam-prg's avatar
vitam-prg committed
    "material-design-icons": "^3.0.1",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "ngx-color-picker": "^9.0.0",
benemart's avatar
benemart committed
    "ngx-filesize": "^2.0.2",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "ngx-quicklink": "^0.2.1",
    "ngx-translate-multi-http-loader": "^3.0.0",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "popper.js": "^1.16.1",
    "rxjs": "^6.5.5",
    "tslib": "^2.0.3",
    "ui-frontend-common": "file:../ui-frontend-common/ui-frontend-common-2.0.0.tgz",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "underscore": "^1.10.2",
    "utf-8-validate": "^5.0.2",
benemart's avatar
benemart committed
    "uuid": "^7.0.2",
vitam-prg's avatar
vitam-prg committed
    "web-animations-js": "^2.3.2",
    "zone.js": "~0.10.3"
vitam-prg's avatar
vitam-prg committed
  },
  "devDependencies": {
    "@angular-builders/custom-webpack": "^8.4.1",
    "@angular-devkit/build-angular": "^0.1001.3",
    "@angular-devkit/build-ng-packagr": "^0.1001.3",
    "@angular/cli": "^10.1.3",
    "@angular/compiler-cli": "10.1.3",
    "@angular/language-service": "10.1.3",
    "@angular/localize": "^10.2.3",
    "@biesbjerg/ngx-translate-extract": "^7.0.2",
vitam-prg's avatar
vitam-prg committed
    "@types/jasmine": "~3.3.0",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "@types/jasminewd2": "^2.0.8",
vitam-prg's avatar
vitam-prg committed
    "@types/node": "~8.9.1",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "@types/underscore": "^1.10.0",
    "codelyzer": "^5.2.2",
    "cp-cli": "^2.0.0",
    "jasmine-core": "^3.5.0",
vitam-prg's avatar
vitam-prg committed
    "jasmine-marbles": "^0.4.1",
    "jasmine-spec-reporter": "~4.2.1",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "karma": "^5.0.9",
    "karma-chrome-launcher": "^2.2.0",
    "karma-coverage-istanbul-reporter": "~2.1.1",
    "karma-jasmine": "^2.0.1",
    "karma-jasmine-html-reporter": "^1.5.4",
    "moment-locales-webpack-plugin": "^1.2.0",
    "ng-packagr": "^10.1.2",
vitam-prg's avatar
vitam-prg committed
    "ngx-i18nsupport": "^0.17.1",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "node-sass": "^4.14.1",
    "protractor": "^7.0.0",
vitam-prg's avatar
vitam-prg committed
    "puppeteer": "^1.2.0",
    "ts-node": "~7.0.1",
    "tsickle": "^0.39.1",
vitam-prg's avatar
vitam-prg committed
    "tslint": "~5.11.0",
    "typescript": "~4.0.5",
Makhtar DIAGNE's avatar
Makhtar DIAGNE committed
    "webpack-bundle-analyzer": "^3.8.0"
vitam-prg's avatar
vitam-prg committed
  }
}