forked from sharmanikhil04/ngx-material-file-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 4 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
{
"name": "material-file-input",
"version": "4.0.1",
"license": "MIT",
"scripts": {
"ng": "nx",
"start": "./node_modules/.bin/ng serve",
"clean": "rm -rf dist",
"build": "ng build",
"build:lib": "ng-packagr -p libs/material-file-input/package.json && cp README.md dist/material-file-input",
"test": "nx test",
"test:once": "nx test material-file-input --watch=false --browsers ChromeHeadless",
"lint": "./node_modules/.bin/nx workspace-lint && nx lint && nx lint material-file-input",
"e2e": "ng e2e",
"build:demo": "ng build --project=demo-packaged --configuration production --base-href /ngx-material-file-input/",
"commit:demo": "git add -f dist/apps/demo-packaged && git commit -m \"update demo\"",
"push:demo": "git subtree push --prefix dist/apps/demo-packaged origin gh-pages",
"erase:demo": "git push origin --delete gh-pages",
"deploy:demo": "npm run commit:demo && npm run push:demo",
"publish:lib": "npm publish ./dist/material-file-input",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "nx migrate latest",
"update:check": "./node_modules/.bin/nx update:check",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points && node ./decorate-angular-cli.js"
},
"private": false,
"dependencies": {
"@angular/animations": "^14.0.1",
"@angular/cdk": "^14.0.1",
"@angular/common": "^14.0.1",
"@angular/compiler": "^14.0.1",
"@angular/core": "^14.0.1",
"@angular/forms": "^14.0.1",
"@angular/material": "^14.0.1",
"@angular/platform-browser": "^14.0.1",
"@angular/platform-browser-dynamic": "^14.0.1",
"@angular/router": "^14.0.1",
"@ngrx/effects": "^13.0.0",
"@ngrx/router-store": "^13.0.0",
"@ngrx/store": "^13.0.0",
"@ngrx/store-devtools": "^13.0.0",
"@nrwl/angular": "^13.1.3",
"rxjs": "~6.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.1",
"@angular-eslint/eslint-plugin": "~13.0.0",
"@angular-eslint/eslint-plugin-template": "~13.0.0",
"@angular-eslint/template-parser": "~13.0.0",
"@angular/cli": "^14.0.1",
"@angular/compiler-cli": "^14.0.1",
"@angular/language-service": "^14.0.1",
"@ngrx/schematics": "^13.0.1",
"@nrwl/cli": "14.0.1",
"@nrwl/eslint-plugin-nx": "14.0.1",
"@nrwl/linter": "14.0.1",
"@nrwl/tao": "14.0.1",
"@nrwl/workspace": "14.0.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"codelyzer": "^6.0.0",
"cypress": "^8.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-ngrx": "^1.0.0",
"jasmine-core": "~3.10.0",
"jasmine-marbles": "^0.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.7",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "14.0.1",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "2.4.1",
"ts-node": "~8.3.0",
"typescript": "~4.7.2"
},
"engines": {
"node": ">=16.13.0"
}
}