forked from angular/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.74 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
{
"name": "nguniversal",
"main": "index.js",
"version": "11.1.0-next.0",
"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",
"yarn": ">=1.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.12.37"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1101.0-next.2",
"@angular-devkit/build-angular": "^0.1101.0-next.2",
"@angular-devkit/core": "^11.1.0-next.2",
"@angular-devkit/schematics": "^11.1.0-next.2",
"@angular/animations": "^11.1.0-next.2",
"@angular/bazel": "^11.1.0-next.2",
"@angular/cli": "^11.1.0-next.2",
"@angular/common": "^11.1.0-next.2",
"@angular/compiler": "^11.1.0-next.2",
"@angular/compiler-cli": "^11.1.0-next.2",
"@angular/core": "^11.1.0-next.2",
"@angular/platform-browser": "^11.1.0-next.2",
"@angular/platform-browser-dynamic": "^11.1.0-next.2",
"@angular/platform-server": "^11.1.0-next.2",
"@angular/router": "^11.1.0-next.2",
"@angular/service-worker": "^11.1.0-next.2",
"@bazel/bazelisk": "1.7.3",
"@bazel/buildifier": "3.5.0",
"@bazel/hide-bazel-files": "1.7.0",
"@bazel/ibazel": "0.14.0",
"@bazel/jasmine": "2.3.2",
"@bazel/typescript": "2.3.2",
"@hapi/hapi": "^18.4.0",
"@schematics/angular": "^11.1.0-next.2",
"@types/browser-sync": "^2.26.1",
"@types/express": "~4.17.6",
"@types/fs-extra": "^9.0.0",
"@types/hapi__hapi": "^20.0.0",
"@types/hapi__inert": "^5.2.0",
"@types/jasmine": "^3.4.4",
"@types/node": "12.12.37",
"@types/shelljs": "^0.8.6",
"browser-sync": "^2.26.7",
"critters": "0.0.6",
"domino": "^2.1.2",
"express": "^4.15.2",
"guess-parser": "^0.4.12",
"http-proxy-middleware": "^1.0.0",
"jasmine": "^3.6.0",
"jasmine-core": "^3.6.0",
"minimatch": "^3.0.4",
"node-fetch": "^2.6.1",
"ora": "^5.1.0",
"protractor": "7.0.0",
"puppeteer": "5.5.0",
"rollup": "~2.28.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.0",
"rxjs": "^6.5.3",
"shelljs": "^0.8.3",
"source-map-support": "^0.5.9",
"terser": "^5.0.0",
"tree-kill": "^1.2.1",
"ts-node": "9.1.1",
"tslib": "~2.0.0",
"tslint": "^6.0.0",
"tsutils": "^3.0.0",
"typescript": "~4.1.2",
"xhr2": "^0.2.0",
"zone.js": "^0.10.2"
}
}