1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
{
"name": "dcae-fe",
"version": "0.0.0",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --deploy-url=/dcaed -sm",
"test": "ng test",
"test:jest": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"war-local": "npm run build && cd dist && jar -cvf rule_engine.war *",
"war-remote": "mvn clean install",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook",
"format": "prettier --write \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
"format:fix": "pretty-quick --staged",
"precommit": "pretty-quick --staged"
},
"jest": {
"preset": "jest-preset-angular",
"roots": [
"<rootDir>/src"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setupJest.ts",
"globals": {
"ts-jest": {
"tsConfigFile": "src/tsconfig.spec.json"
},
"__TRANSFORM_HTML__": true
}
},
"private": true,
"dependencies": {
"@angular/animations": "^5.1.0",
"@angular/cdk": "^5.1.1",
"@angular/common": "^5.1.0",
"@angular/compiler": "^5.1.0",
"@angular/core": "^5.1.0",
"@angular/forms": "^5.1.0",
"@angular/http": "^5.1.0",
"@angular/material": "5.1.1",
"@angular/platform-browser": "^5.1.0",
"@angular/platform-browser-dynamic": "^5.1.0",
"@angular/router": "^5.1.0",
"@ng-select/ng-select": "^0.26.2",
"@swimlane/ngx-datatable": "^13.0.1",
"angular-tree-component": "^7.1.0",
"core-js": "^2.4.1",
"feather-icons": "^4.5.0",
"font-awesome": "^4.7.0",
"intl": "^1.2.5",
"lodash": "^4.17.5",
"material-design-icons": "^3.0.1",
"mobx": "4.3.0",
"mobx-angular": "^3.0.1",
"mobx-utils": "^5.0.0",
"ngx-datatable": "^1.0.3",
"ngx-papaparse": "^2.1.4",
"ngx-toastr": "^8.2.1",
"papaparse": "^4.3.6",
"pretty-checkbox": "3.0.3",
"primeng": "^5.0.2",
"ramda": "^0.25.0",
"rxjs": "^5.5.6",
"sdc-pubsub": "^1.0.20",
"uuid": "^3.2.1",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular/cli": "^1.7.4",
"@angular/compiler-cli": "^5.1.0",
"@angular/language-service": "^5.1.0",
"@storybook/addon-actions": "3.4.0-alpha.9",
"@storybook/addon-knobs": "3.4.0-alpha.9",
"@storybook/addon-links": "3.4.0-alpha.9",
"@storybook/addon-notes": "3.4.0-alpha.9",
"@storybook/addon-options": "3.4.0-alpha.9",
"@storybook/addons": "3.4.0-alpha.9",
"@storybook/angular": "^3.4.0-alpha.9",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.6",
"angular2-template-loader": "^0.6.2",
"babel-core": "^6.26.0",
"codelyzer": "^4.0.1",
"electron": "^1.8.3",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^22.4.2",
"jest-preset-angular": "^5.2.1",
"jest-sonar-reporter": "^1.3.0",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"lint-staged": "^7.0.0",
"mobx-devtools-mst": "^0.9.14",
"mobx-remotedev": "^0.2.8",
"mocha": "^5.0.0",
"mocha-rp-reporter": "^1.0.12",
"mochawesome": "^3.0.2",
"nyc": "^11.7.1",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "~2.5.3",
"wallaby-webpack": "^3.9.5"
}
}
|