This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 4.79 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
{
"name": "ngx-input-search",
"version": "3.0.8",
"license": "MIT",
"scripts": {
"ng": "ng",
"nx": "nx",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"affected:dep-graph": "nx affected:dep-graph",
"affected:build:parallel": "yarn affected:build --parallel --maxParallel 3",
"affected:e2e:parallel": "yarn affected:e2e --parallel --maxParallel 3",
"affected:lint:parallel": "yarn affected:lint --parallel --maxParallel 3",
"affected:test:parallel": "yarn affected:test --parallel --maxParallel 3",
"affected:build:ci:pr": "yarn affected:build --base=$BC_PR_BASE_BRANCH --parallel --maxParallel 3 --prod",
"affected:e2e:ci:pr": "yarn affected:e2e --base=$BC_PR_BASE_BRANCH --parallel --maxParallel 3 --headless",
"affected:lint:ci:pr": "yarn affected:lint --base=$BC_PR_BASE_BRANCH --parallel --maxParallel 3",
"affected:test:ci:pr": "yarn affected:test --base=$BC_PR_BASE_BRANCH --parallel --maxParallel 3 --codeCoverage",
"affected:test:ci:pr:all": "yarn affected:test --parallel --maxParallel 3 --codeCoverage --all",
"affected:build:ci:master": "yarn affected:build --base=`yarn --silent ci:git-hash:last-release` --parallel --maxParallel 3 --prod",
"affected:e2e:ci:master": "yarn affected:e2e --base=`yarn --silent ci:git-hash:last-release` --parallel --maxParallel 3 --headless",
"affected:lint:ci:master": "yarn affected:lint --base=`yarn --silent ci:git-hash:last-release` --parallel --maxParallel 3",
"affected:test:ci:master": "yarn affected:test --base=`yarn --silent ci:git-hash:last-release` --parallel --maxParallel 3 --codeCoverage",
"affected:test:ci:master:all": "yarn affected:test --parallel --maxParallel 3 --codeCoverage --all",
"affected:build:ci:prod": "yarn affected:build --base=`yarn --silent ci:git-hash:last-release` --parallel --maxParallel 3 --prod",
"ci:git-hash:last-release": "git rev-list --tags --max-count=1",
"ci:set-server-known_host": "echo \"$know_host_server_value\" >> ~/.ssh/known_hosts",
"ci:init-deploy": "node .circleci/deployment/index.js",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"deploy:create-version": "npm version",
"deploy:create-version:patch": "yarn deploy:create-version -- patch && yarn deploy:push-tags",
"deploy:create-version:minor": "yarn deploy:create-version -- minor && yarn deploy:push-tags",
"deploy:create-version:major": "yarn deploy:create-version -- major && yarn deploy:push-tags",
"deploy:push-tags": "git push --follow-tags",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"utils:test:ci-scripts": "jest --config .circleci/jest.config.js",
"utils:test:ci-scripts:debug": "node --inspect-brk=0.0.0.0 node_modules/.bin/jest --runInBand --config .circleci/jest.config.js"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@ngx-loading-bar/http-client": "2.2.0",
"@nrwl/angular": "8.12.2",
"angular-cli-ghpages": "0.6.2",
"bootstrap": "4.4.1",
"core-js": "3.6.4",
"font-awesome": "4.7.0",
"jquery": "3.4.1",
"ngx-deploy-npm": "1.1.1",
"rxjs": "6.6.2",
"tslib": "1.10.0",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.24",
"@angular-devkit/build-ng-packagr": "0.803.24",
"@angular/cli": "8.3.24",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@nrwl/cypress": "8.12.2",
"@nrwl/jest": "8.12.2",
"@nrwl/workspace": "8.12.2",
"@types/jest": "24.9.1",
"@types/node": "8.10.59",
"codelyzer": "5.2.1",
"colors": "1.4.0",
"cross-env": "6.0.3",
"cypress": "4.9.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-preset-angular": "7.1.1",
"ng-packagr": "5.7.1",
"prettier": "1.19.1",
"sonar-scanner": "3.1.0",
"ts-jest": "25.2.0",
"ts-node": "8.6.2",
"tsickle": "0.37.1",
"tslint": "5.20.1",
"typescript": "3.4.5"
}
}