2020-01-06 21:50:34 +00:00
|
|
|
{
|
2020-01-14 21:52:39 +00:00
|
|
|
"name": "cr-connect-bpmn",
|
2020-01-07 14:27:10 +00:00
|
|
|
"version": "0.0.0",
|
2020-01-06 21:50:34 +00:00
|
|
|
"scripts": {
|
2020-01-07 14:27:10 +00:00
|
|
|
"ng": "ng",
|
|
|
|
"start": "ng serve",
|
|
|
|
"build": "ng build",
|
2020-01-14 14:35:36 +00:00
|
|
|
"build:prod": "ng build --configuration=production",
|
|
|
|
"build:staging": "ng build --configuration=staging",
|
|
|
|
"build:test": "ng build --configuration=test",
|
2020-01-07 14:27:10 +00:00
|
|
|
"test": "ng test",
|
2020-01-14 21:52:39 +00:00
|
|
|
"test:once": "ng test --code-coverage --watch=false",
|
2020-01-07 14:27:10 +00:00
|
|
|
"lint": "ng lint",
|
2020-01-14 21:52:39 +00:00
|
|
|
"e2e": "ng e2e",
|
|
|
|
"e2e:with-wf": "npm run wf && ng e2e",
|
|
|
|
"wf:build": "docker build -t wf github.com/sartography/cr-connect-workflow",
|
|
|
|
"wf:start": "docker run -d --name wf -p 5000:5000 wf",
|
|
|
|
"wf:db": "docker exec -it wf sh -c 'pipenv run flask db upgrade'",
|
|
|
|
"wf:data": "docker exec -it wf sh -c 'pipenv run flask load-example-data'",
|
|
|
|
"wf": "npm run wf:build && npm run wf:start && npm run wf:db && npm run wf:data",
|
|
|
|
"ci": "npm run lint && npm run test:once && npm run e2e:with-wf && sonar-scanner"
|
2020-01-06 21:50:34 +00:00
|
|
|
},
|
2020-01-07 14:27:10 +00:00
|
|
|
"private": true,
|
2020-01-06 21:50:34 +00:00
|
|
|
"dependencies": {
|
2020-01-10 19:15:33 +00:00
|
|
|
"@angular/animations": "^8.2.14",
|
|
|
|
"@angular/cdk": "^8.2.3",
|
|
|
|
"@angular/common": "^8.2.14",
|
|
|
|
"@angular/compiler": "^8.2.14",
|
|
|
|
"@angular/core": "^8.2.14",
|
|
|
|
"@angular/flex-layout": "^8.0.0-beta.27",
|
|
|
|
"@angular/forms": "^8.2.14",
|
|
|
|
"@angular/material": "^8.2.3",
|
|
|
|
"@angular/platform-browser": "^8.2.14",
|
|
|
|
"@angular/platform-browser-dynamic": "^8.2.14",
|
|
|
|
"@angular/router": "^8.2.14",
|
|
|
|
"bpmn-js": "^3.5.0",
|
2020-01-07 14:34:37 +00:00
|
|
|
"bpmn-js-properties-panel": "^0.33.1",
|
|
|
|
"camunda-bpmn-moddle": "^4.3.0",
|
2020-01-10 19:15:33 +00:00
|
|
|
"core-js": "^2.6.11",
|
|
|
|
"diagram-js-minimap": "^2.0.3",
|
|
|
|
"file-saver": "^2.0.2",
|
|
|
|
"hammerjs": "^2.0.8",
|
|
|
|
"rxjs": "~6.5.4",
|
2020-01-14 03:17:08 +00:00
|
|
|
"sartography-workflow-lib": "0.0.5",
|
2020-01-07 14:27:10 +00:00
|
|
|
"tslib": "^1.10.0",
|
|
|
|
"zone.js": "~0.9.1"
|
2020-01-06 21:50:34 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-10 19:15:33 +00:00
|
|
|
"@angular-devkit/build-angular": "^0.803.22",
|
|
|
|
"@angular/cli": "^8.3.22",
|
|
|
|
"@angular/compiler-cli": "^8.2.14",
|
|
|
|
"@angular/language-service": "^8.2.14",
|
|
|
|
"@types/jasmine": "^3.5.0",
|
|
|
|
"@types/jasminewd2": "^2.0.8",
|
2020-01-07 14:27:10 +00:00
|
|
|
"@types/node": "~8.9.4",
|
2020-01-10 19:15:33 +00:00
|
|
|
"codelyzer": "^5.0.1",
|
|
|
|
"jasmine-core": "~2.99.1",
|
2020-01-07 14:27:10 +00:00
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
2020-01-10 19:15:33 +00:00
|
|
|
"karma": "^3.1.4",
|
2020-01-07 14:27:10 +00:00
|
|
|
"karma-chrome-launcher": "~2.2.0",
|
2020-01-10 19:15:33 +00:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.1.1",
|
|
|
|
"karma-jasmine": "~1.1.2",
|
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
|
|
|
"protractor": "^5.4.2",
|
|
|
|
"puppeteer": "^1.20.0",
|
2020-01-07 14:27:10 +00:00
|
|
|
"ts-node": "~7.0.0",
|
2020-01-10 19:15:33 +00:00
|
|
|
"tslint": "~5.11.0",
|
|
|
|
"typescript": "~3.5.3",
|
|
|
|
"webpack-dev-server": "^3.10.1"
|
2020-01-06 21:50:34 +00:00
|
|
|
}
|
|
|
|
}
|