-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.62 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
{
"name": "web-speech-recorder-ng",
"version": "3.11.2",
"author": {
"name": "Klaus Jänsch",
"email": "klausj@phonetik.uni-muenchen.de"
},
"license": "MIT",
"scripts": {
"npm_version": "npm version --no-git-tag-version prerelease ",
"ng": "ng",
"apply_module_version": "node bin/apply_version.js",
"new_prerelease": "npm version --no-git-tag-version prerelease && cd projects && cd speechrecorderng && npm version --no-git-tag-version prerelease && cd .. && cd ..",
"new_prerelease_build_and_pack_module": "npm run new_prerelease && npm run build_and_pack_module",
"new_patchrelease": "npm version --no-git-tag-version patch && cd projects && cd speechrecorderng && npm version --no-git-tag-version patch && cd .. && cd ..",
"new_patchrelease_build_and_pack_module": "npm run new_patchrelease && npm run build_and_pack_module",
"build_module": "npm run apply_module_version && ng build speechrecorderng --configuration production",
"test_module": "ng test speechrecorderng",
"pack_module": "cd dist && cd speechrecorderng && npm pack && mv speechrecorderng-*.tgz ../",
"pack_pi_module": "cd dist && cd speechrecorderng && npm pack && cd ../../ && node bin/mv_tgz_pkgs.js",
"build_and_pack_module": "npm run build_module && npm run pack_pi_module",
"publish_module": "cd dist && cd speechrecorderng && npm publish",
"start": "ng serve --host=127.0.0.1 --configuration development",
"start_prod": "ng serve --host=127.0.0.1 --configuration production",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "~19.0.5",
"@angular/cdk": "~19.0.4",
"@angular/common": "~19.0.5",
"@angular/compiler": "~19.0.5",
"@angular/core": "~19.0.5",
"@angular/forms": "~19.0.5",
"@angular/material": "~19.0.4",
"@angular/platform-browser": "~19.0.5",
"@angular/platform-browser-dynamic": "~19.0.5",
"@angular/router": "~19.0.5",
"@angular/service-worker": "~19.0.5",
"rxjs": "~7.8.1",
"tslib": "~2.3.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.5",
"@angular/cli": "~19.0.5",
"@angular/compiler-cli": "~19.0.5",
"@types/jasmine": "~4.3.6",
"@types/node": "~17.0.45",
"@types/dom-screen-wake-lock": "~1.0.0",
"core-js": "~3.23.3",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "~19.0.1",
"typescript": "~5.6.3"
}
}