forked from angular/angular-bazel-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.89 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
{
"name": "angular-bazel-example",
"private": true,
"description": "Demo of building Angular apps with Bazel",
"license": "Apache-2.0",
"engines": {
"node": ">=10.9.0 <11.0.0",
"yarn": ">=1.9.2 <2.0.0"
},
"dependencies": {
"@angular/animations": "8.2.3",
"@angular/cdk": "8.1.4",
"@angular/common": "8.2.3",
"@angular/core": "8.2.3",
"@angular/forms": "8.2.3",
"@angular/material": "8.1.4",
"@angular/platform-browser": "8.2.3",
"@angular/platform-browser-dynamic": "8.2.3",
"@angular/router": "8.2.3",
"@ngrx/store": "8.0.1",
"date-fns": "1.30.1",
"rxjs": "6.5.2",
"systemjs": "0.21.6",
"tslib": "1.10.0",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular/bazel": "8.2.3",
"@angular/cli": "8.3.0",
"@angular/compiler": "8.2.3",
"@angular/compiler-cli": "8.2.3",
"@bazel/bazel": "^0.29.0",
"@bazel/benchmark-runner": "0.1.0",
"@bazel/buildifier": "0.28.0",
"@bazel/ibazel": "0.10.3",
"@bazel/karma": "~0.36.0",
"@bazel/protractor": "~0.36.0",
"@bazel/typescript": "~0.36.0",
"@types/jasmine": "3.4.0",
"@types/node": "6.14.6",
"clang-format": "1.2.4",
"core-js": "2.6.9",
"firebase-tools": "7.1.0",
"husky": "3.0.4",
"ts-morph": "3.1.0",
"typescript": "3.4.5"
},
"scripts": {
"build": "bazel build //src:bundle",
"serve": "ibazel run //src:devserver",
"deploy": "ng build && firebase deploy",
"serve-prod": "bazel run //src:prodserver",
"e2e": "bazel test //e2e:all",
"test": "bazel test //src/...",
"benchmark": "ibazel-benchmark-runner //src:devserver src/app/hello-world/hello-world.component.ts --url=http://localhost:5432",
"postinstall": "ngc -p angular-metadata.tsconfig.json",
"bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-actions,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,out-of-order-load,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unsorted-dict-items,unused-variable",
"bazel:lint": "yarn bazel:format --lint=warn",
"bazel:lint-fix": "yarn bazel:format --lint=fix",
"format": "git-clang-format",
"precommit": "check-clang-format \"yarn format\"",
"generate": "node tools/generator/index.js",
"generate:clean": "node tools/generator/index.js --clean"
}
}