-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.78 KB
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
{
"name": "@bitwarden/splunk-ui",
"version": "1.0.0",
"description": "UI for the Splunk app for reporting Bitwarden event logs",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/splunk.git"
},
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitwarden/splunk/issues"
},
"homepage": "https://bitwarden.com",
"dependencies": {
"@angular/animations": "21.2.4",
"@angular/common": "21.2.4",
"@angular/compiler": "21.2.4",
"@angular/core": "21.2.4",
"@angular/forms": "21.2.4",
"@angular/platform-browser": "21.2.4",
"@angular/platform-browser-dynamic": "21.2.4",
"@angular/router": "21.2.4",
"rxjs": "7.8.1",
"splunk-sdk": "2.0.2",
"tslib": "2.8.1",
"zone.js": "0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.8",
"@angular/cli": "21.2.8",
"@angular/compiler-cli": "21.2.4",
"@tailwindcss/forms": "0.5.9",
"@types/jasmine": "6.0.0",
"@types/jquery": "4.0.0",
"husky": "9.1.7",
"jasmine-core": "6.3.0",
"jquery": "4.0.0",
"lint-staged": "17.0.7",
"prettier": "3.8.1",
"tailwindcss": "4.3.1",
"@tailwindcss/postcss": "4.3.1",
"postcss": "8.5.10",
"typescript": "5.9.3"
},
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown"
},
"scripts": {
"build:dev": "ng build --configuration development",
"build": "ng build",
"lint-staged": "lint-staged",
"ng": "ng",
"prepare": "cd .. && husky ui/.husky",
"prettier": "prettier . --write --ignore-unknown",
"start": "ng serve",
"test": "ng test",
"watch": "ng build --watch --configuration development"
}
}