-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.71 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
{
"name": "TODO",
"version": "0.0.1",
"description": "TODO",
"license": "Apache 2.0",
"dependencies": {
"@angular/animations": "6.0.4",
"@angular/common": "6.0.4",
"@angular/core": "6.0.4",
"@angular/forms": "6.0.4",
"@angular/platform-browser": "6.0.4",
"@angular/router": "6.0.4",
"@angular/upgrade": "^6.0.4",
"concurrently": "^3.5.1",
"rxjs": "6.2.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/bazel": "6.0.4",
"@angular/compiler": "6.0.4",
"@angular/compiler-cli": "6.0.4",
"@angular/platform-browser-dynamic": "6.0.4",
"@bazel/ibazel": "0.4.0",
"clang-format": "1.2.3",
"husky": "0.14.3",
"typescript": "2.7.2"
},
"scripts": {
"postinstall": "ngc -p postinstall.tsconfig.json",
"start": "concurrently \"./bazel-run.sh //src:devserver\" \"./bazel-run.sh //grpc_gateway\" \"./bazel-run.sh //addition_service/server\" \"./bazel-run.sh //multiplication_service/server\"",
"start-watch": "concurrently \"ibazel run //src:devserver\" \"ibazel run //grpc_gateway\" \"ibazel run //addition_service/server\"",
"serve": "ibazel run //src:devserver",
"prebuildifier": "bazel build @com_github_bazelbuild_buildtools//buildifier",
"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",
"google-java-format": "find . -type f \\( -name *.java \\) ! -path \"./node_modules/*\" | xargs google-java-format --replace",
"format": "git-clang-format && gofmt -w -l . && npm run google-java-format",
"precommit": "check-clang-format \"yarn format\" && test -z $(gofmt -l .)"
}
}