-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 3.75 KB
/
package.json
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
{
"name": "git4school",
"version": "1.5.2",
"scripts": {
"ng": "ng",
"start": "ng serve --hmr",
"build": "ng build",
"test": "ng test",
"lint": "eslint . --ext .ts",
"e2e": "ng e2e",
"build-prod": "ng build git4school --configuration=production --statsJson",
"doc": "npx compodoc -p tsconfig.json",
"serve-tech-docs": "npx compodoc -p tsconfig.json -s -w",
"build:doc": "npm run-script build-prod && npm run-script doc",
"update": "ng update --all --force",
"serve-user-docs": "cd user-docs && bundle exec jekyll serve --watch"
},
"private": true,
"dependencies": {
"@angular/animations": "11.0.6",
"@angular/common": "11.0.6",
"@angular/compiler": "11.0.6",
"@angular/core": "11.0.6",
"@angular/forms": "11.0.6",
"@angular/localize": "11.0.6",
"@angular/platform-browser": "11.0.6",
"@angular/platform-browser-dynamic": "11.0.6",
"@angular/router": "11.0.6",
"@compodoc/compodoc": "^1.1.11",
"@fortawesome/angular-fontawesome": "^0.6.1",
"@fortawesome/fontawesome-free": "^5.13.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@ng-bootstrap/ng-bootstrap": "^8.0.1",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^4.0.0",
"@swimlane/ngx-datatable": "^19.0.0",
"@types/d3": "^7.4.3",
"ajv": "^6.12.0",
"bootstrap": "^4.5.3",
"chart.js": "^2.9.3",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-colorschemes": "^0.4.0",
"chartjs-plugin-datalabels": "^0.7.0",
"chartjs-plugin-zoom": "^0.7.5",
"class-transformer": "^0.3.1",
"core-js": "^3.6.4",
"d3": "^7.9.0",
"dexie": "^3.0.3",
"dexie-export-import": "^1.0.0",
"file-saver": "^2.0.2",
"firebase": "^7.13.2",
"jest-json-schema": "^2.1.0",
"jquery": "^3.5.1",
"jszip": "^3.3.0",
"moment": "^2.29.1",
"ng2-charts": "2.4.2",
"ngx-clipboard": "^13.0.0",
"ngx-markdown": "^9.0.0",
"ngx-spinner": "^9.0.2",
"ngx-toastr": "^12.0.1",
"popper.js": "^1.16.1",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.5.5",
"rxjs-compat": "^6.5.5",
"stream": "0.0.2",
"tooltip.js": "^1.3.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1100.6",
"@angular-eslint/builder": "^1.0.0",
"@angular-eslint/eslint-plugin": "^1.0.0",
"@angular/cli": "11.0.6",
"@angular/compiler-cli": "11.0.6",
"@angular/language-service": "11.0.6",
"@compodoc/compodoc": "^1.1.11",
"@types/chart.js": "^2.9.18",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"codelyzer": "^6.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.1",
"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",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"ts-node": "~8.8.2",
"typescript": "~4.0.5"
},
"compodoc": {
"theme": "Readthedocs",
"includes": "./src/assets/additional-docs/",
"assetsFolder": "./src/assets/additional-docs/",
"name": "Git4School documentation",
"output": "tech-docs",
"excludes": [
"src/test.ts",
"**/*.spec.ts"
]
}
}