-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.63 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.63 KB
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
{
"name": "ResponsibleSystem",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve -o --host 0.0.0.0 --port 9200",
"hmr": "ng serve --host 0.0.0.0 --port 9200 4201 --hmr -e=hmr",
"build": "ng build",
"build:stg": "bash ./scripts/ng.sh build --prod --aot --configuration=stg",
"build:lv": "bash ./scripts/ng.sh build --prod --aot --configuration=lv",
"test": "ng test",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor",
"build:sass": "node-sass src/assets/styles/styles.scss src/assets/styles/styles.css",
"watch:sass": "npm run build:sass && node-sass src/assets/styles -w src/assets/styles",
"format": "npx prettier --write 'src/**/*.ts'"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.3",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/forms": "^6.0.3",
"@angular/http": "^6.0.3",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"@ng-bootstrap/ng-bootstrap": "^1.1.2",
"@ng-idle/core": "^6.0.0-beta.3",
"@swimlane/ngx-datatable": "^13.0.0",
"@types/lodash": "^4.14.62",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.2.34",
"@types/toastr": "^2.1.33",
"angular-calendar": "^0.25.2",
"bootstrap": "4.1.1",
"chart.js": "2.7.1",
"chartist": "0.11.0",
"core-js": "^2.4.1",
"jasmine": "^3.1.0",
"jquery": "3.2.1",
"jquery-slimscroll": "^1.3.8",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.21",
"morris.js": "^0.5.0",
"ng-chartist": "1.1.1",
"ng2-charts": "1.6.0",
"ng2-dragula": "1.5.0",
"ng2-file-upload": "1.3.0",
"ng2-smart-table": "1.2.2",
"ngx-bootstrap": "^3.0.1",
"ngx-pagination": "^3.1.1",
"ngx-perfect-scrollbar": "^5.0.0",
"ngx-quill": "^3.1.0",
"ngx-toastr": "^8.7.3",
"ngx-ui-switch": "^6.0.3",
"node-waves": "^0.7.5",
"npm": "^6.11.2",
"popper.js": "^1.12.5",
"primeicons": "^1.0.0-beta.10",
"primeng": "^6.0.1",
"quill": "^1.3.6",
"rxjs": "^6.2.0",
"rxjs-compat": "^6.0.0-rc.0",
"simple-line-icons": "^2.4.1",
"spin.js": "^2.3.2",
"sweetalert": "^2.0.8",
"toastr": "^2.1.4",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.5",
"@angular/cli": "^6.0.5",
"@angular/compiler-cli": "^6.0.3",
"@angular/language-service": "^6.0.3",
"@angularclass/hmr": "^2.1.3",
"@types/chartist": "^0.9.37",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/jquery": "^3.2.5",
"@types/node": "~6.0.60",
"codelyzer": "~4.2.1",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.9.2",
"nswag": "^11.17.21",
"prettier": "1.13.4",
"protractor": "~5.1.2",
"sass-loader": "^6.0.6",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "^2.7.2"
}
}