This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
executable file
·114 lines (114 loc) · 3.45 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
{
"name": "canvasboard",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"ci:clean": "rimraf ./dist",
"ci:test": "ng test --watch=false --browsers=ChromeHeadlessCustom --code-coverage",
"ci:build": "ng build --prod",
"postinstall": "ngcc",
"new-plugin": "node src/app/plugins_cli.js"
},
"private": true,
"dependencies": {
"@angular-material-extensions/password-strength": "^8.1.1",
"@angular/animations": "^11.1.0",
"@angular/cdk": "~11.0.4",
"@angular/common": "~11.0.9",
"@angular/compiler": "~11.0.9",
"@angular/core": "~11.0.9",
"@angular/forms": "~11.0.9",
"@angular/localize": "^11.1.0",
"@angular/material": "^11.1.0",
"@angular/platform-browser": "~11.0.9",
"@angular/platform-browser-dynamic": "~11.0.9",
"@angular/router": "~11.0.9",
"@types/reveal": "^4.1.1",
"ace-builds": "^1.4.12",
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4",
"ci": "^1.0.0",
"fabric": "^4.3.0",
"fuse.js": "^6.4.6",
"highlight.js": "^10.5.0",
"jquery": "^3.5.1",
"markdown-it": "^12.0.4",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-highlightjs": "^3.4.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-named-code-blocks": "^0.1.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.5.2",
"markdown-it-task-lists": "^2.1.1",
"mousetrap": "^1.6.5",
"ngx-markdown-editor": "^3.3.1",
"popper.js": "^1.16.1",
"reveal.js": "^4.1.3",
"rimraf": "^3.0.2",
"rxjs": "~6.6.3",
"sortablejs": "^1.13.0",
"sweetalert2": "^11.0.0",
"tslib": "^2.0.0",
"uniqid": "^5.2.0",
"zone.js": "~0.10.2"
},
"resolutions": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular-eslint/builder": "1.2.0",
"@angular-eslint/eslint-plugin": "1.2.0",
"@angular-eslint/eslint-plugin-template": "1.2.0",
"@angular-eslint/schematics": "^13.0.1",
"@angular-eslint/template-parser": "1.2.0",
"@angular/cli": "^11.1.0",
"@angular/compiler-cli": "~11.0.9",
"@angular/language-service": "~11.0.9",
"@types/jasmine": "^3.6.3",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.19.15",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "latest",
"husky": "^4.3.8",
"inquirer": "^8.1.2",
"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.5.1",
"protractor": "~7.0.0",
"puppeteer": "^5.5.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"tslint-angular": "^3.0.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "ng lint"
}
}
}