-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.1 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.1 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "aws-network-flow-visualizer",
"version": "1.0.0",
"description": "Cross-platform network flow visualization tool for AWS environments",
"main": "dist/main/main.js",
"homepage": "./",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:renderer\"",
"dev:main": "webpack --config webpack.main.config.js --mode development --watch",
"dev:renderer": "webpack serve --config webpack.renderer.config.js --mode development",
"build": "npm run build:main && npm run build:renderer",
"build:main": "webpack --config webpack.main.config.js --mode production",
"build:renderer": "webpack --config webpack.renderer.config.js --mode production",
"package": "npm run build && electron-builder",
"package:linux": "npm run build && electron-builder --linux",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"typecheck": "tsc --noEmit",
"start": "npm run build && electron dist/main/main.js",
"electron": "npm run build && electron dist/main/main.js",
"electron-dev": "concurrently \"npm run dev:main\" \"wait-on http://localhost:3000 && electron dist/main/main.js\" \"npm run dev:renderer\""
},
"keywords": [
"aws",
"network",
"visualization",
"vpc",
"transit-gateway",
"flow-logs"
],
"author": "AWS Network Flow Visualizer Team",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.4.3",
"@types/d3": "^7.4.0",
"@types/jest": "^29.5.5",
"@types/keytar": "^4.4.0",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"audit-ci": "^7.1.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"css-loader": "^6.8.1",
"electron": "^26.2.1",
"electron-builder": "^24.6.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.6.3",
"wait-on": "^9.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.414.0",
"@aws-sdk/client-sso-oidc": "^3.896.0",
"@aws-sdk/client-sts": "^3.414.0",
"@aws-sdk/credential-providers": "^3.414.0",
"@reduxjs/toolkit": "^1.9.6",
"cytoscape": "^3.26.0",
"d3": "^7.8.5",
"keytar": "^7.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"tailwindcss": "^3.3.3"
},
"build": {
"appId": "com.awsnetworkflowvisualizer.app",
"productName": "AWS Network Flow Visualizer",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
]
}
}
}