This repository has been archived by the owner on Jun 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.74 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
118
119
120
121
122
123
124
{
"name": "kikstart-ui",
"version": "2.0.0-alpha.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx update @nrwl/workspace",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.1.11",
"@angular/cdk": "^9.2.4",
"@angular/common": "^9.1.11",
"@angular/compiler": "^9.1.11",
"@angular/core": "^9.1.11",
"@angular/fire": "^6.0.0",
"@angular/forms": "^9.1.11",
"@angular/material": "^9.2.4",
"@angular/platform-browser": "^9.1.11",
"@angular/platform-browser-dynamic": "^9.1.11",
"@angular/router": "^9.1.11",
"@ctrl/ngx-numbered-codeblock": "^3.0.1",
"@editorjs/code": "^2.5.0",
"@editorjs/editorjs": "^2.18.0",
"@editorjs/embed": "^2.3.1",
"@editorjs/header": "^2.5.0",
"@editorjs/image": "^2.4.1",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.2.1",
"@editorjs/list": "^1.5.0",
"@editorjs/marker": "^1.2.2",
"@editorjs/paragraph": "^2.7.0",
"@editorjs/quote": "^2.3.0",
"@editorjs/simple-image": "^1.3.3",
"@editorjs/warning": "^1.1.1",
"@fortawesome/angular-fontawesome": "^0.6.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@ngx-formly/bootstrap": "^5.7.1",
"@ngx-formly/core": "^5.7.1",
"@schematics/angular": "^9.1.8",
"@tinynodes/ngx-editorjs": "^4.0.0",
"@tinynodes/ngx-editorjs-plugins": "^3.0.0",
"core-js": "^3.6.5",
"font-awesome": "^4.7.0",
"ngx-bootstrap": "^5.6.1",
"ngx-color": "^5.1.3",
"ngx-markdown": "^9.1.1",
"ngx-timeago": "^1.0.4",
"ngx-toastr": "^12.1.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"yargs-parser": "^18.1.3",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/architect": "~0.901",
"@angular-devkit/build-angular": "0.901.8",
"@angular-devkit/build-ng-packagr": "~0.901.8",
"@angular/cli": "9.1.8",
"@angular/compiler-cli": "^9.1.11",
"@angular/language-service": "^9.1.11",
"@nrwl/angular": "^9.3.0",
"@nrwl/cypress": "9.3.0",
"@nrwl/jest": "9.3.0",
"@nrwl/node": "^9.3.0",
"@nrwl/nx-plugin": "^9.3.0",
"@nrwl/workspace": "9.3.0",
"@nxpm/schematics": "^1.8.0",
"@types/chalk": "^2.2.0",
"@types/jest": "26.0.0",
"@types/node": "^14.0.13",
"codelyzer": "~5.2.2",
"cypress": "^4.8.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"firebase-tools": "^8.4.2",
"fuzzy": "^0.1.3",
"husky": "4.2.5",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"jest": "26.0.1",
"jest-preset-angular": "8.2.0",
"lint-staged": "10.2.9",
"ng-packagr": "^9.1.5",
"ngx-trend": "^5.0.1",
"prettier": "2.0.5",
"ts-jest": "26.1.0",
"ts-node": "~8.10.2",
"tslint": "~6.1.2",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
"yarn affected:lint --uncommitted --fix --parallel",
"yarn format --uncommitted"
]
}
}