-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.55 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
{
"name": "input-counter",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"i": "ng i --force",
"start": "ng serve --port 4125",
"build": "ng build --statsJson",
"build:docs": "npx compodoc -p projects/angular-material-extensions/google-maps-autocomplete/tsconfig.lib.json --hideGenerator --disableCoverage -d dist/browser/doc/",
"build:lib": "ng build @angular-material-extensions/input-counter",
"build:lib:watch": "ng build @angular-material-extensions/input-counter --watch",
"build:ssr": "ng build --configuration production && ng run input-counter:server:production",
"deploy": "ng deploy --base-href=/input-counter/ --no-build",
"dev:ssr": "ng run input-counter:serve-ssr",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"serve:ssr": "node dist/input-counter/server/main.js",
"serve:prerender": "cd dist/browser && http-server",
"prerender": "ng run input-counter:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.5",
"@angular/cdk": "^13.3.9",
"@angular/common": "^14.0.5",
"@angular/compiler": "^14.0.5",
"@angular/core": "^14.0.5",
"@angular/flex-layout": "^14.0.0-beta.40",
"@angular/forms": "^14.0.5",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "^14.0.5",
"@angular/platform-browser-dynamic": "^14.0.5",
"@angular/platform-server": "^14.0.5",
"@angular/router": "^14.0.5",
"@nguniversal/express-engine": "^13.1.1",
"angulartics2": "^9.1.0",
"express": "^4.15.2",
"ngx-markdown": "^9.1.1",
"rxjs": "~7.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.5",
"@angular-devkit/build-ng-packagr": "^0.1002.4",
"@angular/cli": "^14.0.5",
"@angular/compiler-cli": "^14.0.5",
"@compodoc/compodoc": "^1.1.11",
"@nguniversal/builders": "^13.1.1",
"@release-it/conventional-changelog": "^1.1.4",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.0",
"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",
"ng-packagr": "^14.0.3",
"protractor": "~7.0.0",
"release-it": "^13.6.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.6.4"
}
}