-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (30 loc) · 1.1 KB
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
{
"name": "my-angular-app",
"version": "1.0.0",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"locales:scan": "locale-sync scan src/assets/i18n",
"locales:check": "locale-sync check src/assets/i18n --source en.json",
"locales:check:ci": "locale-sync check src/assets/i18n --source en.json --format json",
"locales:sync": "locale-sync sync src/assets/i18n --source en.json",
"locales:sync:preview": "locale-sync sync src/assets/i18n --source en.json --dry-run",
"locales:sync:backup": "locale-sync sync src/assets/i18n --source en.json --backup",
"locales:translate": "locale-sync translate src/assets/i18n --source en.json",
"locales:translate:preview": "locale-sync translate src/assets/i18n --source en.json --dry-run"
},
"dependencies": {
"@angular/core": "^18.0.0",
"@angular/common": "^18.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0"
},
"devDependencies": {
"@angular/cli": "^18.0.0",
"typescript": "~5.4.0"
}
}