This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.73 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
{
"name": "readalong-studio",
"homepage": "https://readalong-studio.mothertongues.org",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-fr": "ng serve --configuration=fr --port=5200",
"start-web-api": "cd ../../../Studio/readalongs && PRODUCTION= uvicorn readalongs.web_api:web_api_app --reload",
"build": "ng build --configuration development --localize",
"build:prod": "ng build --configuration production --localize",
"build:prod:ghpages": "ng build --configuration production && ng build --configuration production,fr",
"watch": "ng build --watch --configuration development --localize",
"test": "ng test",
"test:once": "ng test --watch=false --browsers ChromeHeadlessCI",
"prepare": "husky install",
"extract-i18n": "ng extract-i18n --format json --output-path src/i18n",
"check-fr-l10n": "bash -c \"diff -w <(cat src/i18n/messages.json | sed 's/:.*//') <(cat src/i18n/messages.fr.json | sed 's/:.*//')\""
},
"private": true,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@angular-devkit/core": "~15.1.4",
"@angular-devkit/build-angular": "~15.1.4",
"@angular-builders/custom-webpack": "~15.0.0",
"@angular/cli": "~15.1.0",
"@angular/compiler-cli": "~15.1.1",
"@angular/localize": "~15.1.1",
"@commitlint/cli": "^17.0.3",
"@types/dom-mediacapture-record": "^1.0.14",
"@types/jasmine": "~4.0.0",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.3",
"jasmine-core": "~4.1.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4",
"webpack": "^5.75.0"
},
"dependencies": {
"@angular/animations": "~15.1.0",
"@angular/cdk": "~15.1.2",
"@angular/common": "~15.1.2",
"@angular/compiler": "~15.1.0",
"@angular/core": "~15.1.2",
"@angular/forms": "~15.1.2",
"@angular/material": "~15.1.2",
"@angular/platform-browser": "~15.1.0",
"@angular/platform-browser-dynamic": "~15.1.2",
"@angular/router": "~15.1.2",
"@types/emscripten": "^1.39.6",
"bootstrap": "^5.2.3",
"ngx-toastr": "^16.0.2",
"rxjs": "~7.5.0",
"shepherd.js": "^11.0.1",
"soundswallower": "^0.6.1",
"standardized-audio-context": "^25.3.38",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
}
}