blob: 1c2179baa010649659cedf9359db6a9f82608fbd [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001{
2 "name": "vid-cli",
3 "version": "0.0.0",
Ittay Sternf7926712019-07-07 19:23:03 +03004 "license": "MIT",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03005 "scripts": {
6 "ng": "ng",
7 "start": "ng serve --port 4201",
Ittay Stern6f900cc2018-08-29 17:01:32 +03008 "build": "ng build --no-progress --no-aot --output-hashing all",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03009 "build.prod": "ng build",
Ittay Stern6f900cc2018-08-29 17:01:32 +030010 "test": "jest",
11 "test:jest": "jest",
12 "test:jest:pipeline": "jest --silent --ci --reporters=default --reporters=jest-junit",
13 "test:jest:watch": "jest --watch",
14 "test:jest:coverage": "jest --ci --reporters=default --reporters=jest-junit --coverage --silent",
15 "test:jest:snapshot": "jest --ci --reporters=default --reporters=jest-junit --coverage -u",
16 "test:watch": "jest --clearCache && jest --watch",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030017 "coverage": "ng test --code-coverage",
Ittay Stern6f900cc2018-08-29 17:01:32 +030018 "verify": "cypress verify",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030019 "e2e": "ng e2e",
20 "build-watch": "ng build --watch",
21 "cypress:open": "cypress open",
Ittay Sternf7926712019-07-07 19:23:03 +030022 "cypress": "cypress open --config watchForFileChanges=false,baseUrl=http://localhost:8080/vid",
Ittay Stern6f900cc2018-08-29 17:01:32 +030023 "cypress:run": "cypress run",
24 "cypress:headless": "cypress run --config baseUrl=http://localhost:8080/vid",
25 "format": "prettier",
26 "format:fix": "pretty-quick --staged",
27 "lint": "ng lint"
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030028 },
29 "private": true,
30 "dependencies": {
Ittay Sternf7926712019-07-07 19:23:03 +030031 "@angular-redux/store": "9.0.0",
32 "@angular/animations": "7.1.4",
33 "@angular/cdk": "7.2.2",
34 "@angular/common": "7.1.4",
35 "@angular/compiler": "7.1.4",
36 "@angular/core": "7.1.4",
37 "@angular/forms": "7.1.4",
38 "@angular/http": "7.1.4",
Ittay Stern6f900cc2018-08-29 17:01:32 +030039 "@angular/material": "7.2.2",
Ittay Sternf7926712019-07-07 19:23:03 +030040 "@angular/platform-browser": "7.1.4",
41 "@angular/platform-browser-dynamic": "7.1.4",
42 "@angular/platform-server": "7.1.4",
43 "@angular/router": "7.1.4",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030044 "@harmowatch/ngx-redux-core": "0.2.2",
45 "@nicky-lenaers/ngx-scroll-to": "^0.6.1",
Ittay Sternf7926712019-07-07 19:23:03 +030046 "@turf/turf": "5.1.6",
47 "@types/lodash": "4.14.121",
48 "angular-svg-icon": "5.0.0",
Einat Vinouzee1f79742019-08-27 16:01:01 +030049 "angular-tree-component": "8.4.0",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030050 "angular2-datatable": "0.6.0",
51 "angular2-multiselect-dropdown": "2.5.0",
Ittay Stern6f900cc2018-08-29 17:01:32 +030052 "angular5-csv": "^0.2.10",
Ittay Sternf7926712019-07-07 19:23:03 +030053 "bootstrap": "3.3.7",
54 "core-js": "2.6.1",
55 "font-awesome": "4.7.0",
56 "install": "0.12.2",
Ittay Stern6f900cc2018-08-29 17:01:32 +030057 "jest-image-snapshot": "2.8.1",
58 "jest-preset-angular": "6.0.2",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030059 "ng-multiselect-dropdown": "0.1.3",
60 "ng2-bootstrap-modal": "1.0.1",
61 "ngx-bootstrap": "^2.0.2",
Ittay Stern6f900cc2018-08-29 17:01:32 +030062 "ngx-contextmenu": "^5.1.1",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030063 "ngx-datatable": "1.0.3",
64 "ngx-moment": "^2.0.0-rc.0",
65 "ngx-tooltip": "0.0.9",
Ittay Stern6f900cc2018-08-29 17:01:32 +030066 "npm": "^6.4.1",
Rina Roib7719ba2019-07-10 15:53:25 +030067 "redux": "4.0.1",
Ittay Stern6f900cc2018-08-29 17:01:32 +030068 "redux-observable": "^1.0.0",
69 "rxjs": "^6.3.3",
70 "rxjs-compat": "^6.3.3",
71 "slnodejs": "^2.1.124",
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030072 "tslib": "1.9.x",
Ittay Stern6f900cc2018-08-29 17:01:32 +030073 "zone.js": "^0.8.26"
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +030074 },
75 "devDependencies": {
Ittay Sternf7926712019-07-07 19:23:03 +030076 "@angular-builders/jest": "7.3.1",
77 "@angular-devkit/build-angular": "0.13.1",
78 "@angular/cli": "7.3.1",
79 "@angular/compiler-cli": "7.2.5",
80 "@angular/language-service": "7.2.5",
81 "@babel/preset-env": "7.3.1",
Ittay Stern6f900cc2018-08-29 17:01:32 +030082 "@bahmutov/add-typescript-to-cypress": "2.0.0",
Ittay Sternf7926712019-07-07 19:23:03 +030083 "@types/chai": "4.1.7",
Ittay Stern6f900cc2018-08-29 17:01:32 +030084 "@types/jest": "24.0.6",
85 "@types/jest-each": "0.3.4",
86 "@types/node": "^10.12.18",
Ittay Sternf7926712019-07-07 19:23:03 +030087 "angular2-template-loader": "0.6.2",
Ittay Stern6f900cc2018-08-29 17:01:32 +030088 "babel-jest": "24.1.0",
Ittay Sternf7926712019-07-07 19:23:03 +030089 "codelyzer": "4.5.0",
90 "cypress": "^3.1.5",
Ittay Stern6f900cc2018-08-29 17:01:32 +030091 "hammerjs": "2.0.8",
92 "husky": "^1.3.1",
Ittay Sternf7926712019-07-07 19:23:03 +030093 "istanbul-reports": "2.1.1",
Ittay Stern6f900cc2018-08-29 17:01:32 +030094 "jest": "24.1.0",
95 "jest-each": "24.0.0",
96 "jest-junit": "6.3.0",
97 "jest-sonar-reporter": "2.0.0",
98 "ngx-wallaby-jest": "0.0.1",
99 "npm-run-all": "^4.1.5",
Einat Vinouzee1f79742019-08-27 16:01:01 +0300100 "onap-ui-angular": "5.2.4",
101 "onap-ui-common": "1.0.105",
Ittay Stern6f900cc2018-08-29 17:01:32 +0300102 "prettier": "1.16.4",
103 "pretty-quick": "^1.10.0",
104 "ts-mockito": "2.3.1",
105 "ts-node": "~5.0.1",
106 "tslint": "^5.12.0",
Ittay Sternf7926712019-07-07 19:23:03 +0300107 "typescript": "3.1.6",
Ittay Stern6f900cc2018-08-29 17:01:32 +0300108 "wallaby-webpack": "^3.9.11",
109 "webpack": "^4.28.2"
110 },
111 "jest-junit": {
112 "outputDirectory": "./coverage",
113 "outputName": "./test-results-jest.xml"
114 },
115 "jest": {
116 "preset": "jest-preset-angular",
Ittay Sternf7926712019-07-07 19:23:03 +0300117 "setupFilesAfterEnv": [
118 "<rootDir>/src/setupJest.ts"
119 ],
Ittay Stern6f900cc2018-08-29 17:01:32 +0300120 "transform": {
121 "^.+\\.(ts|html)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js",
122 "^.+\\.js$": "babel-jest"
123 }
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +0300124 }
125}