forked from angular/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "nguniversal",
"main": "index.js",
"version": "9.0.2",
"private": true,
"description": "Universal (isomorphic) JavaScript support for Angular",
"homepage": "https://github.com/angular/universal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angular/universal"
},
"bugs": {
"url": "https://github.com/angular/universal/issues"
},
"config": {
"engine-strict": true
},
"engines": {
"node": ">=10.13.0 <13.0.0"
},
"scripts": {
"postinstall": "ngc -p ./angular-metadata.tsconfig.json && node --preserve-symlinks --preserve-symlinks-main ./tools/postinstall-patches.js && yarn ngcc",
"lint": "tslint -c tslint.json '+(modules|tools)/**/*.ts' -p tsconfig.json",
"build": "npm run bazel:build",
"prebuildifier": "bazel build --noshow_progress @com_github_bazelbuild_buildtools//buildifier",
"bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name BUILD -or -name BUILD.bazel -or -name WORKSPACE \\) ! -path \"*/node_modules/*\" | xargs buildifier -v",
"bazel:lint": "yarn bazel:format --lint=warn",
"bazel:lint-fix": "yarn bazel:format --lint=fix",
"bazel:build": "bazel build //modules/...",
"test": "bazel test //modules/...",
"build:watch": "ibazel build //modules/...",
"test:watch": "ibazel test //modules/...",
"preinstall": "node ./tools/npm/check-npm.js",
"ngcc": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"bazel": "bazel"
},
"resolutions": {
"@types/hapi__boom": "7.4.1",
"@types/hapi__iron": "5.1.0",
"@types/node": "^12.11.1"
},
"devDependencies": {
"@angular-devkit/architect": "^0.901.0-next.3",
"@angular-devkit/build-angular": "^0.901.0-next.3",
"@angular-devkit/core": "^9.1.0-next.3",
"@angular-devkit/schematics": "^9.1.0-next.3",
"@angular/animations": "^9.1.0-next.4",
"@angular/bazel": "^9.1.0-next.4",
"@angular/cli": "^9.1.0-next.3",
"@angular/common": "^9.1.0-next.4",
"@angular/compiler": "^9.1.0-next.4",
"@angular/compiler-cli": "^9.1.0-next.4",
"@angular/core": "^9.1.0-next.4",
"@angular/platform-browser": "^9.1.0-next.4",
"@angular/platform-browser-dynamic": "^9.1.0-next.4",
"@angular/platform-server": "^9.1.0-next.4",
"@angular/router": "^9.1.0-next.4",
"@bazel/bazel": "2.1.0",
"@bazel/buildifier": "^2.0.0",
"@bazel/hide-bazel-files": "~1.6.0",
"@bazel/ibazel": "^0.13.0",
"@bazel/jasmine": "~1.6.0",
"@bazel/karma": "~1.6.0",
"@bazel/typescript": "~1.6.0",
"@hapi/hapi": "^18.4.0",
"@schematics/angular": "^9.1.0-next.3",
"@types/browser-sync": "^2.26.1",
"@types/express": "4.17.4",
"@types/express-serve-static-core": "4.17.5",
"@types/fs-extra": "^8.0.0",
"@types/hapi__hapi": "^19.0.0",
"@types/hapi__inert": "^5.2.0",
"@types/jasmine": "^3.4.4",
"@types/node": "^12.11.1",
"@types/shelljs": "^0.8.6",
"browser-sync": "^2.26.7",
"domino": "^2.1.2",
"express": "^4.15.2",
"guess-parser": "^0.4.12",
"http-proxy-middleware": "^1.0.0",
"jasmine-core": "^3.0.0",
"karma": "^5.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-jasmine": "^3.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^5.0.0",
"minimatch": "^3.0.4",
"node-fetch": "^2.2.0",
"protractor": "5.4.4",
"rollup": "~1.31.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rxjs": "^6.5.3",
"shelljs": "^0.8.3",
"source-map-support": "^0.5.9",
"terser": "^4.4.0",
"tree-kill": "^1.2.1",
"ts-node": "8.9.0",
"tslib": "~1.11.0",
"tslint": "^6.0.0",
"tsutils": "^3.0.0",
"typescript": "~3.8.3",
"xhr2": "^0.2.0",
"zone.js": "^0.10.2"
}
}