forked from angular/angular-bazel-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.98 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
{
"name": "example",
"version": "0.0.1",
"description": "Demo of bazel rules for angular",
"license": "Apache 2.0",
"engines": {
"node": ">=10.9.0 <11.0.0",
"yarn": ">=1.9.2 <2.0.0"
},
"dependencies": {
"@ngrx/store": "6.1.0",
"rxjs": "6.3.3",
"systemjs": "0.21.5",
"tslib": "1.9.3",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/animations": "7.1.0",
"@angular/bazel": "7.1.0",
"@angular/cdk": "7.1.0",
"@angular/compiler": "7.1.0",
"@angular/compiler-cli": "7.1.0",
"@angular/common": "7.1.0",
"@angular/core": "7.1.0",
"@angular/material": "7.1.1",
"@bazel/bazel": "0.19.1",
"@bazel/benchmark-runner": "0.1.0",
"@bazel/ibazel": "0.8.2",
"@bazel/karma": "0.21.0",
"@bazel/typescript": "0.21.0",
"@types/jasmine": "3.3.0",
"@types/node": "6.0.117",
"clang-format": "1.2.4",
"husky": "0.14.3",
"protractor": "5.4.1",
"typescript": "3.1.1"
},
"scripts": {
"build": "bazel build //src:bundle",
"serve": "ibazel run //src:devserver",
"serve-prod": "bazel run //src:prodserver",
"e2e": "bazel test //e2e:all",
"test": "bazel test //src/...",
"benchmark": "ibazel-benchmark-runner //src:devserver src/hello-world/hello-world.component.ts --url=http://localhost:5432",
"postinstall": "ngc -p postinstall.tsconfig.json",
"prebuildifier": "bazel build @com_github_bazelbuild_buildtools//buildifier",
"//": "note: working around https://github.com/alexeagle/angular-bazel-example/issues/60",
"buildifier": "find . -type f \\( -name BUILD -or -name BUILD.bazel \\) ! -path \"./node_modules/*\" | xargs $(bazel info bazel-bin)/external/com_github_bazelbuild_buildtools/buildifier/*/buildifier",
"format": "git-clang-format",
"precommit": "check-clang-format \"yarn format\""
}
}