-
- Downloads
Resolve "Prepare project for integration and do refactor"
Showing
- .editorconfig 16 additions, 0 deletions.editorconfig
- .eslintrc.json 45 additions, 0 deletions.eslintrc.json
- .gitignore 40 additions, 0 deletions.gitignore
- .gitlab-ci.yml 106 additions, 0 deletions.gitlab-ci.yml
- .prettierrc 8 additions, 0 deletions.prettierrc
- LICENSE 6 additions, 0 deletionsLICENSE
- README.md 18 additions, 1 deletionREADME.md
- VERSION.txt 0 additions, 0 deletionsVERSION.txt
- angular.json 195 additions, 0 deletionsangular.json
- e2e/protractor.conf.js 28 additions, 0 deletionse2e/protractor.conf.js
- e2e/src/app.e2e-spec.ts 9 additions, 0 deletionse2e/src/app.e2e-spec.ts
- e2e/src/app.po.ts 11 additions, 0 deletionse2e/src/app.po.ts
- e2e/tsconfig.e2e.json 13 additions, 0 deletionse2e/tsconfig.e2e.json
- package-lock.json 14299 additions, 0 deletionspackage-lock.json
- package.json 87 additions, 0 deletionspackage.json
- projects/kypo-command-visualizations-example/.eslintrc.json 26 additions, 0 deletionsprojects/kypo-command-visualizations-example/.eslintrc.json
- projects/kypo-command-visualizations-example/karma.conf.js 43 additions, 0 deletionsprojects/kypo-command-visualizations-example/karma.conf.js
- projects/kypo-command-visualizations-example/src/app/app-routing.module.ts 62 additions, 0 deletions...mand-visualizations-example/src/app/app-routing.module.ts
- projects/kypo-command-visualizations-example/src/app/app.component.css 0 additions, 0 deletions...-command-visualizations-example/src/app/app.component.css
- projects/kypo-command-visualizations-example/src/app/app.component.html 3 additions, 0 deletions...command-visualizations-example/src/app/app.component.html
.editorconfig
0 → 100644
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.prettierrc
0 → 100644
LICENSE
0 → 100644
VERSION.txt
0 → 100644
angular.json
0 → 100644
e2e/protractor.conf.js
0 → 100644
e2e/src/app.e2e-spec.ts
0 → 100644
e2e/src/app.po.ts
0 → 100644
e2e/tsconfig.e2e.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@muni-kypo-crp/command-visualizations", | ||
"version": "0.0.0", | ||
"scripts": { | ||
"ng": "ng", | ||
"start": "ng serve", | ||
"build": "ng build", | ||
"test": "ng test", | ||
"lint": "ng lint && npm run prettier-check", | ||
"e2e": "ng e2e", | ||
"prettier-check": "prettier --check \"projects/**/*.ts\"", | ||
"prettier-fix": "prettier --write \"./projects/**/*.ts\"", | ||
"build-example-app": "ng build kypo-command-visualizations-example --configuration production", | ||
"build-library": "ng build --configuration production kypo-command-visualizations", | ||
"create-package": "cd dist/kypo-command-visualizations && npm pack", | ||
"build-and-pack": "npm install && npm run build-library && npm run create-package", | ||
"ci-update-version": "cd ./projects/kypo-command-visualizations/ && npm version $TAG_VERSION", | ||
"ci-build-and-pack": "npm ci --cache .npm --prefer-offline && npm run build-library && npm run create-package", | ||
"ci-publish-package": "cd dist/kypo-command-visualizations && npm publish" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "npm run prettier-check" | ||
} | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@angular/animations": "^12.2.5", | ||
"@angular/cdk": "^12.2.5", | ||
"@angular/common": "~12.2.5", | ||
"@angular/compiler": "~12.2.5", | ||
"@angular/core": "~12.2.5", | ||
"@angular/forms": "~12.2.5", | ||
"@angular/material": "^12.2.5", | ||
"@angular/platform-browser": "~12.2.5", | ||
"@angular/platform-browser-dynamic": "~12.2.5", | ||
"@angular/router": "~12.2.5", | ||
"@angular-eslint/builder": "^12.0.0", | ||
"@angular-eslint/eslint-plugin": "^12.0.0", | ||
"@angular-eslint/eslint-plugin-template": "^12.0.0", | ||
"@angular-eslint/schematics": "^12.0.0", | ||
"@angular-eslint/template-parser": "^12.0.0", | ||
"@typescript-eslint/parser": "^4.23.0", | ||
"@typescript-eslint/eslint-plugin": "^4.23.0", | ||
"eslint": "^7.13.0", | ||
"@hpcc-js/wasm": "^1.3.0", | ||
"@types/chart.js": "^2.9.31", | ||
"@types/jquery": "^3.5.5", | ||
"@sentinel/auth": "~12.0.0", | ||
"@sentinel/common": "~12.2.1", | ||
"@sentinel/components": "~12.3.1", | ||
"@sentinel/layout": "~12.0.0", | ||
"angular-oauth2-oidc": "^10.0.3", | ||
"angular-oauth2-oidc-jwks": "^9.0.0", | ||
"angular-mgl-timeline": "^0.4.0", | ||
"animate.css": "^4.1.1", | ||
"chart.js": "^2.5.0", | ||
"d3-graphviz": "^2.6.1", | ||
"husky": "^4.2.5", | ||
"hammerjs": "^2.0.8", | ||
"jquery": "^3.6.0", | ||
"ngx-indexed-db": "^8.0.2", | ||
"rxjs": "~6.6.0", | ||
"tslib": "^2.0.0", | ||
"zone.js": "~0.11.4" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "~12.2.5", | ||
"@angular/cli": "~12.2.5", | ||
"@angular/compiler-cli": "~12.2.5", | ||
"@types/d3-graphviz": "^2.6.6", | ||
"@types/jasmine": "~3.6.0", | ||
"@types/node": "^12.11.1", | ||
"jasmine-core": "~3.6.0", | ||
"jasmine-spec-reporter": "~5.0.0", | ||
"karma": "~6.3.2", | ||
"karma-chrome-launcher": "~3.1.0", | ||
"karma-coverage-istanbul-reporter": "~3.0.2", | ||
"karma-jasmine": "~4.0.0", | ||
"karma-jasmine-html-reporter": "^1.5.0", | ||
"protractor": "~7.0.0", | ||
"ng-packagr": "~12.0.3", | ||
"prettier": "2.3.0", | ||
"ts-node": "~8.3.0", | ||
"typescript": "~4.3.5" | ||
} | ||
} |
Please register or sign in to comment