forked from baloise-incubator/cc_ocv_angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.76 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "bal-opencv-ng",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --disableHostCheck --host 0.0.0.0 --port 4202",
"build": "ng build",
"test": "ng test",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.1",
"@angular/common": "~10.1.1",
"@angular/compiler": "~10.1.1",
"@angular/core": "~10.1.1",
"@angular/forms": "~10.1.1",
"@angular/platform-browser": "~10.1.1",
"@angular/platform-browser-dynamic": "~10.1.1",
"@angular/pwa": "^0.803.9",
"@angular/router": "~10.1.1",
"@angular/service-worker": "^8.2.2",
"@fortawesome/fontawesome-free": "^5.11.2",
"@ng-bootstrap/ng-bootstrap": "^5.1.0",
"@ng-select/ng-select": "^3.0.7",
"@ngrx/data": "^8.2.0",
"@ngrx/effects": "^8.2.0",
"@ngrx/entity": "^8.2.0",
"@ngrx/router-store": "^8.2.0",
"@ngrx/store": "^8.2.0",
"@teachablemachine/image": "^0.8.4",
"@tensorflow-models/blazeface": "^0.0.5",
"@tensorflow-models/handpose": "^0.0.6",
"@tensorflow-models/mobilenet": "^2.0.4",
"@tensorflow/tfjs": "^2.4.0",
"@tensorflow/tfjs-backend-webgl": "^2.4.0",
"@types/webgl2": "^0.0.5",
"@wnry/angular-lib": "https://dev.wnry.ch/bitbucket/projects/WNRYW/repos/wnry-angular-lib/raw/release/wnry-angular-lib.tgz",
"bootstrap": "^4.3.1",
"flag-icon-css": "^3.3.0",
"flatpickr": "^4.6.3",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.8",
"icheck-bootstrap": "^3.0.1",
"ionicons": "^2.0.0",
"jquery": "^3.4.1",
"lodash-es": "^4.17.15",
"ngx-social-button": "^1.0.4",
"popper.js": "^1.15.0",
"rxjs": "~6.6.0",
"schematics-utilities": "^2.0.2",
"simple-line-icons": "^2.4.1",
"tslib": "^2.0.0",
"uuid": "^3.3.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.1",
"@angular/cli": "~10.1.1",
"@angular/compiler-cli": "~10.1.1",
"@angular/language-service": "^8.2.2",
"@angular/localize": "^10.1.1",
"@ngrx/schematics": "^8.2.0",
"@ngrx/store-devtools": "^8.2.0",
"@types/node": "^12.11.1",
"cheerio": "^1.0.0-rc.3",
"codelyzer": "^5.0.0",
"conventional-changelog-cli": "^2.0.23",
"cpx": "^1.5.0",
"ng-packagr": "^5.4.0",
"protractor": "~5.4.0",
"schemats": "^3.0.3",
"standard-version": "^7.0.0",
"ts-node": "~8.3.0",
"tsickle": "^0.37.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2",
"webpack-bundle-analyzer": "^3.5.1",
"webpack-cli": "^3.3.9"
},
"standard-version": {
"commitUrlFormat": "{{host}}/projects/OP/repos/bal-opencv-nx/commits/{{hash}}",
"compareUrlFormat": "{{host}}/projects/OP/repos/bal-opencv-nx/commits?since={{previousTag}}&until={{currentTag}}",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"section": "Style",
"hidden": true
},
{
"type": "refactor",
"section": "Refactor",
"hidden": true
},
{
"type": "perf",
"section": "Performance",
"hidden": true
},
{
"type": "test",
"section": "Testing",
"hidden": true
}
],
"scripts": {
"prerelease": "ng build --prod",
"postbump": "ng build --prod ",
"prechangelog": "git add --all . && git commit -m 'chore(release): release build'",
"posttag": "git push --tags && git push && echo 'Successfully released version $npm_package_version!'"
}
}
}