Project

General

Profile

1 61065 k.triantaf
{
2
  "name": "explore",
3 61068 k.triantaf
  "version": "1.0.0",
4 61065 k.triantaf
  "scripts": {
5
    "ng": "ng",
6 61068 k.triantaf
    "start": "ng serve --disable-host-check --host 0.0.0.0 --port 4300",
7 61065 k.triantaf
    "build": "ng build",
8 61074 k.triantaf
    "build-dev": "ng build --configuration=development",
9 61103 k.triantaf
    "build-test": "ng build --configuration=test",
10 61074 k.triantaf
    "build-beta": "ng build --configuration=beta",
11
    "build-prod": "ng build --prod",
12 61154 k.triantaf
    "webpack-bundle-analyzer": "ng build --stats-json && webpack-bundle-analyzer dist/explore/browser/stats.json --host 0.0.0.0",
13 61065 k.triantaf
    "test": "ng test",
14 61074 k.triantaf
    "e2e": "ng e2e",
15
    "dev:ssr": "ng run explore:serve-ssr",
16
    "serve:ssr": "node dist/explore/server/main.js",
17 61154 k.triantaf
    "build:ssr-dev": "npm run build-dev && ng run explore:server:development",
18
    "build:ssr-test": "npm run build-test && ng run explore:server:test",
19
    "build:ssr-beta": "npm run build-beta && ng run explore:server:beta",
20
    "build:ssr-prod": "npm run build-prod && ng run explore:server:production",
21 61074 k.triantaf
    "prerender": "ng run explore:prerender",
22 61268 k.triantaf
    "postinstall": "chmod +x clean-library.sh && ./clean-library.sh",
23 61267 argiro.kok
    "after-build-clean": "rm -rf dist/explore/browser/assets/common-assets/.svn/ src/app/openaireLibrary/.svn node_modules"
24 61065 k.triantaf
  },
25
  "private": true,
26
  "dependencies": {
27 61085 k.triantaf
    "@angular/animations": "~11.2.14",
28
    "@angular/cdk": "^11.2.13",
29
    "@angular/common": "~11.2.14",
30
    "@angular/compiler": "~11.2.14",
31
    "@angular/core": "~11.2.14",
32
    "@angular/forms": "~11.2.14",
33
    "@angular/localize": "^11.2.14",
34
    "@angular/material": "^11.2.13",
35
    "@angular/platform-browser": "~11.2.14",
36
    "@angular/platform-browser-dynamic": "~11.2.14",
37
    "@angular/platform-server": "~11.2.14",
38
    "@angular/router": "~11.2.14",
39
    "@nguniversal/express-engine": "^11.2.1",
40 61074 k.triantaf
    "clipboard": "^1.5.16",
41 61065 k.triantaf
    "core-js": "^2.5.4",
42 61074 k.triantaf
    "express": "^4.15.2",
43 61065 k.triantaf
    "jquery": "^3.4.1",
44 61297 k.triantaf
    "ng-recaptcha": "^7.0.1",
45 61065 k.triantaf
    "prom-client": "^11.3.0",
46 61074 k.triantaf
    "rxjs": "^6.5.1",
47 61065 k.triantaf
    "ts-md5": "^1.2.0",
48 61082 k.triantaf
    "tslib": "^2.0.0",
49 61074 k.triantaf
    "zone.js": "~0.10.2"
50 61065 k.triantaf
  },
51
  "devDependencies": {
52 61085 k.triantaf
    "@angular-devkit/build-angular": "~0.1102.13",
53
    "@angular/cli": "~11.2.13",
54
    "@angular/compiler-cli": "~11.2.14",
55
    "@angular/language-service": "~11.2.14",
56
    "@nguniversal/builders": "^11.2.1",
57 61068 k.triantaf
    "@types/express": "^4.17.0",
58
    "@types/compression": "^1.7.0",
59 61074 k.triantaf
    "@types/node": "^12.11.1",
60 61085 k.triantaf
    "@types/jasmine": "~3.6.0",
61 61065 k.triantaf
    "@types/jasminewd2": "~2.0.3",
62 61085 k.triantaf
    "codelyzer": "^6.0.0",
63
    "jasmine-core": "~3.6.0",
64 61082 k.triantaf
    "jasmine-spec-reporter": "~5.0.0",
65 61085 k.triantaf
    "karma": "~6.3.3",
66 61082 k.triantaf
    "karma-chrome-launcher": "~3.1.0",
67
    "karma-coverage-istanbul-reporter": "~3.0.2",
68
    "karma-jasmine": "~4.0.0",
69
    "karma-jasmine-html-reporter": "^1.5.0",
70
    "protractor": "~7.0.0",
71 61065 k.triantaf
    "ts-node": "~7.0.0",
72 61082 k.triantaf
    "typescript": "~4.0.7"
73 61065 k.triantaf
  }
74
}