-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
70 lines (70 loc) · 2.64 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": "angular-l10n",
"version": "16.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve angular-l10n-app --open",
"build": "ng build angular-l10n",
"build:watch": "ng build angular-l10n --watch --configuration development",
"build:app": "ng build angular-l10n-app",
"serve:app": "npx http-server ./dist/angular-l10n-app",
"test:ci": "ng test angular-l10n --watch=false --browsers=ChromeHeadlessCI",
"test:coverage": "ng test angular-l10n --watch=false --browsers=Chrome --code-coverage",
"test": "ng test angular-l10n --watch=false --browsers=Chrome",
"test:watch": "ng test angular-l10n --watch=true --browsers=Chrome",
"lint": "ng lint angular-l10n",
"pack:lib": "npm pack ./dist/angular-l10n",
"publish:lib": "npm publish ./dist/angular-l10n",
"publish:lib:next": "npm publish --tag next ./dist/angular-l10n",
"analyze": "ng build angular-l10n-app --stats-json && webpack-bundle-analyzer dist/angular-l10n-app/stats.json",
"dev:ssr": "ng serve angular-l10n-ssr --open",
"build:ssr": "ng build angular-l10n-ssr",
"serve:ssr": "node dist/angular-l10n-ssr/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "17.0.4",
"@angular/common": "17.0.4",
"@angular/compiler": "17.0.4",
"@angular/core": "17.0.4",
"@angular/forms": "17.0.4",
"@angular/platform-browser": "17.0.4",
"@angular/platform-browser-dynamic": "17.0.4",
"@angular/platform-server": "17.0.4",
"@angular/router": "17.0.4",
"@angular/ssr": "^17.0.3",
"express": "^4.18.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.3",
"@angular-devkit/core": "17.0.3",
"@angular-eslint/builder": "17.1.0",
"@angular-eslint/eslint-plugin": "17.1.0",
"@angular-eslint/eslint-plugin-template": "17.1.0",
"@angular-eslint/schematics": "17.1.0",
"@angular-eslint/template-parser": "17.1.0",
"@angular/cli": "17.0.3",
"@angular/compiler-cli": "17.0.4",
"@angular/language-service": "17.0.4",
"@types/express": "^4.17.17",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "17.0.2",
"ts-node": "~10.4.0",
"typescript": "~5.2.2",
"webpack-bundle-analyzer": "^4.5.0"
}
}