-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.33 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.33 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
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
90
91
92
93
94
95
96
97
98
{
"name": "sentinelstream",
"version": "1.0.0",
"description": "Multi-Cloud Log Aggregator with PII/Secret Masking - Desktop Edition",
"main": "ui/main.js",
"scripts": {
"start": "node src/index.js",
"start:ui": "electron .",
"dev": "nodemon src/index.js",
"dev:ui": "NODE_ENV=development electron .",
"test": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.js ui/**/*.js",
"docker:build": "docker build -t sentinelstream:latest .",
"docker:run": "docker-compose up",
"generate-logs": "node scripts/generate-test-logs.js",
"build:ui": "electron-builder",
"build:ui:win": "electron-builder --win",
"build:ui:mac": "electron-builder --mac",
"build:ui:linux": "electron-builder --linux",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [
"logs",
"aggregation",
"security",
"devops",
"streams",
"pii-masking",
"electron",
"desktop-app"
],
"author": "",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.490.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"eslint": "^9.39.2",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"fast-xml-parser": "^4.4.1"
},
"build": {
"appId": "com.sentinelstream.app",
"productName": "SentinelStream",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"ui/**/*",
"config/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "ui/renderer/assets/icon.icns",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "ui/renderer/assets/icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "ui/renderer/assets/icon.png",
"target": [
"AppImage",
"deb"
],
"category": "Development",
"maintainer": "Alina alinashforwork@gmail.com"
}
}
}