-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.84 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.84 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
104
105
106
107
108
109
{
"name": "@matheo/angular",
"version": "12.2.13",
"license": "MIT",
"private": true,
"scripts": {
"ng": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && ng lint",
"e2e": "nx e2e",
"npm:publish": "npm publish --access=public",
"npm:publish:github": "npm publish --access=public --registry=https://npm.pkg.github.com",
"npm:datasource": "run-s 'build -- datasource --configuration production' 'npm:publish dist/libs/datasource' 'npm:publish:github dist/libs/datasource'",
"npm:datepicker": "run-s 'build -- datepicker --configuration production' 'tools:postbuild libs/datepicker' 'nx postbuild datepicker' 'npm:publish dist/libs/datepicker' 'npm:publish:github dist/libs/datepicker' 'tools:tag libs/datepicker'",
"docs:datasource": "compodoc -p libs/datasource/tsconfig.lib.json -s -o -w",
"docs:datepicker": "compodoc -p libs/datepicker/tsconfig.lib.json -s -o -w",
"tools:postbuild": "ts-node tools/scripts/post-build",
"tools:tag": "ts-node tools/scripts/git-tag",
"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 migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"nx": "nx",
"postinstall": "ngcc --properties es2015 browser module main && node ./decorate-angular-cli.js",
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"@angular/animations": "13.0.3",
"@angular/cdk": "13.0.3",
"@angular/common": "13.0.3",
"@angular/compiler": "13.0.3",
"@angular/core": "13.0.3",
"@angular/fire": "^7.2.0",
"@angular/flex-layout": "13.0.0-beta.36",
"@angular/forms": "13.0.3",
"@angular/material": "13.0.3",
"@angular/platform-browser": "13.0.3",
"@angular/platform-browser-dynamic": "13.0.3",
"@angular/router": "13.0.3",
"@myndpm/dyn-forms": "12.2.13-beta.13",
"@ng-bootstrap/ng-bootstrap": "~10.0.0",
"@ngrx/component-store": "13.0.1",
"@ngrx/effects": "13.0.1",
"@ngrx/router-store": "13.0.1",
"@ngrx/store": "13.0.1",
"astronomy-engine": "^2.0.9",
"bootstrap": "~5.1.3",
"date-fns": "^2.27.0",
"date-fns-tz": "^1.1.6",
"firebase": "^9.15.0",
"luxon": "^2.5.2",
"rxfire": "^6.0.0",
"rxjs": "6.6.7",
"tslib": "^2.0.0",
"typed.js": "~2.0.12",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.0.4",
"@angular/cli": "13.0.4",
"@angular/compiler-cli": "13.0.3",
"@angular/language-service": "13.0.3",
"@angular/localize": "13.0.3",
"@compodoc/compodoc": "^1.1.11",
"@ngrx/schematics": "13.0.1",
"@ngrx/store-devtools": "13.0.1",
"@nrwl/angular": "13.2.3",
"@nrwl/cli": "13.2.3",
"@nrwl/cypress": "13.2.3",
"@nrwl/jest": "13.2.3",
"@nrwl/tao": "13.2.3",
"@nrwl/workspace": "13.2.3",
"@types/jest": "27.0.2",
"@types/luxon": "^2.0.9",
"@types/node": "^12.12.38",
"@types/shelljs": "^0.8.9",
"codelyzer": "^6.0.1",
"cypress": "^3.8.2",
"dotenv": "10.0.0",
"jest": "27.2.3",
"jest-preset-angular": "11.0.1",
"ng-packagr": "13.0.8",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "2.5.1",
"rxjs-tslint-rules": "^4.34.8",
"scss-bundle": "^3.1.2",
"shelljs": "^0.8.4",
"ts-jest": "27.0.5",
"ts-node": "~10.4.0",
"tslint": "~6.1.0",
"typescript": "4.4.4",
"vrsource-tslint-rules": "^6.0.0"
}
}