-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
105 lines (105 loc) · 4.09 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
{
"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/ng-package.prod.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/",
"postbuild:demo": "cp apps/demo/src/.nojekyll dist/apps/demo-packaged",
"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.2.12",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.12",
"@angular/compiler": "14.2.12",
"@angular/core": "14.2.12",
"@angular/forms": "14.2.12",
"@angular/material": "14.2.7",
"@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "14.2.12",
"@ngrx/effects": "14.0.2",
"@ngrx/router-store": "14.0.2",
"@ngrx/store": "14.0.2",
"@ngrx/store-devtools": "14.0.2",
"@nrwl/angular": "14.8.4",
"rxjs": "~6.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.2.10",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "14.2.12",
"@angular/language-service": "14.2.12",
"@ngrx/schematics": "14.0.2",
"@nrwl/cli": "14.8.4",
"@nrwl/eslint-plugin-nx": "14.8.4",
"@nrwl/linter": "14.8.4",
"@nrwl/tao": "14.8.4",
"@nrwl/workspace": "14.8.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"codelyzer": "^6.0.0",
"cypress": "^9.7.0",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-ngrx": "^2.1.0",
"jasmine-core": "4.2.0",
"jasmine-marbles": "^0.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "14.2.2",
"nx": "14.8.6",
"postcss": "^8.4.14",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.7.0",
"postcss-url": "^10.1.1",
"prettier": "^2.7.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16.13.0"
}
}