forked from buildbuddy-io/buildbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.35 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
{
"name": "buildbuddy",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "bazel clean && rm -rf node_modules",
"dev": "concurrently 'ibazel run server --define=use_devserver=true' 'ibazel run app:devserver'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./{app,static}/**/*.{js,jsx,ts,tsx,css,html}": [
"prettier --write"
],
"**/{BUILD,WORKSPACE,*.bazel,*.bzl}": [
"buildifier"
],
"**/*.go": [
"gofmt -w"
],
"**/*.proto": [
"clang-format -i"
]
},
"devDependencies": {
"@bazel/bazelisk": "^1.6.1",
"@bazel/buildifier": "^3.4.0",
"@bazel/ibazel": "^0.13.2",
"@bazel/labs": "^2.3.0",
"@bazel/rollup": "^2.3.0",
"@bazel/terser": "^2.3.0",
"@bazel/typescript": "^2.3.0",
"@types/diff": "^4.0.2",
"@types/diff-match-patch": "^1.0.32",
"@types/node": "^12.0.2",
"clang-format": "^1.4.0",
"concurrently": "^5.3.0",
"google-protobuf": "^3.14.0",
"grpc-web": "^1.2.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rollup": "^2.6.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"terser": "^4.6.4"
},
"dependencies": {
"@types/moment": "^2.13.0",
"@types/pako": "^1.0.1",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-lazylog": "^4.5.0",
"@types/react-modal": "^3.10.6",
"@types/react-virtualized": "^9.21.9",
"@types/recharts": "^1.8.16",
"@types/uuid": "^8.3.0",
"chalk": "^4.0.0",
"diff-match-patch": "^1.0.5",
"escodegen": "^1.11.1",
"espree": "^7.0.0",
"estraverse": "^5.1.0",
"events": "^3.2.0",
"glob": "^7.1.4",
"jsdoc": "^3.6.2",
"minimist": "^1.2.3",
"moment": "^2.24.0",
"oidc-client": "^1.10.1",
"pako": "^1.0.11",
"protobufjs": "^6.8.9",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-lazylog": "https://github.com/buildbuddy-io/react-lazylog.git#37947b0c1363acfd3ec14c937d051f547ea92547",
"react-modal": "^3.11.2",
"react-virtualized": "^9.21.2",
"recharts": "^1.8.5",
"rxjs": "^6.6.3",
"semver": "^7.1.2",
"tmp": "^0.2.0",
"typescript": "^3.4.5",
"uglify-js": "^3.6.0",
"uuid": "^8.3.0"
}
}