forked from robisim74/angular-l10n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.27 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.27 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
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
{
"name": "@snack-dev/angular-l10n",
"version": "10.1.4",
"scripts": {
"ng": "ng",
"start": "ng serve angular-l10n-app --open",
"build": "ng build angular-l10n --prod",
"build:watch": "ng build angular-l10n --watch",
"build:app": "ng build angular-l10n-app --prod",
"test": "ng test angular-l10n --watch=false",
"test:watch": "ng test angular-l10n --watch=true",
"test:app": "ng test angular-l10n-app",
"lint": "ng lint angular-l10n",
"e2e": "ng e2e",
"build:docs": "npx compodoc -p projects/angular-l10n/tsconfig.lib.prod.json -d docs --disableCoverage -a images",
"serve:docs": "npx compodoc -d docs -s",
"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 --prod --stats-json && webpack-bundle-analyzer dist/angular-l10n-app/stats-es2015.json",
"postinstall": "ngcc",
"dev:ssr": "ng run angular-l10n-app-ssr:serve-ssr",
"serve:ssr": "cross-env NODE_ICU_DATA=node_modules/full-icu node dist/angular-l10n-app-ssr/server/main.js",
"build:ssr": "ng build --prod && ng run angular-l10n-app-ssr:server:production",
"prerender": "concurrently \"npx http-server ./dist/angular-l10n-app-ssr/browser -p 5000 \" \"cross-env NODE_ICU_DATA=node_modules/full-icu ng run angular-l10n-app-ssr:prerender\""
},
"compodoc": {
"name": "Angular l10n Specification"
},
"private": false,
"dependencies": {
"@angular/animations": "10.0.2",
"@angular/common": "10.0.2",
"@angular/compiler": "10.0.2",
"@angular/core": "10.0.2",
"@angular/forms": "10.0.2",
"@angular/platform-browser": "10.0.2",
"@angular/platform-browser-dynamic": "10.0.2",
"@angular/platform-server": "10.0.2",
"@angular/router": "10.0.2",
"@formatjs/intl-getcanonicallocales": "^1.2.10",
"@formatjs/intl-pluralrules": "^3.0.2",
"@formatjs/intl-relativetimeformat": "^6.0.2",
"@nguniversal/express-engine": "^10.0.1",
"cross-env": "^7.0.2",
"express": "^4.15.2",
"full-icu": "^1.3.1",
"ngx-cookie": "^5.0.0",
"ngx-cookie-backend": "^5.0.0",
"rxjs": "6.5.4",
"tslib": "^2.0.0",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1000.1",
"@angular-devkit/build-ng-packagr": "0.1000.1",
"@angular/cli": "10.0.1",
"@angular/compiler-cli": "10.0.2",
"@angular/language-service": "10.0.2",
"@compodoc/compodoc": "^1.1.11",
"@nguniversal/builders": "^10.0.1",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.0.8",
"codelyzer": "^6.0.0",
"concurrently": "^5.3.0",
"husky": "^4.2.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^10.0.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.9.6",
"webpack-bundle-analyzer": "^3.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run build"
}
}
}