-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.3 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.3 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
{
"name": "odin-v2",
"productName": "ODINv2",
"version": "3.3.0",
"description": "Open Source Command and Control Information System (C2IS)",
"main": "dist/main.js",
"scripts": {
"start": "electron . --cold --trace-warnings",
"hot": "webpack serve",
"webpack": "webpack",
"webpack:production": "webpack --mode=production",
"test": "mocha 'test/**/*-test.js' --recursive",
"test:watch": "mocha 'src/**/*.test.js' --recursive --watch --reporter min",
"coverage": "c8 --all --include 'src/**/*' --reporter=html mocha 'test/**/*-test.js' --recursive",
"lint": "eslint src/",
"build:win": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never",
"build:linux": "electron-builder --linux --publish never",
"build:linux:appimage": "electron-builder --linux AppImage --publish never",
"build:linux:snap": "electron-builder --linux snap --publish never",
"release:m": "electron-builder --mac --publish always",
"release:w": "electron-builder --win --publish always",
"release:l": "electron-builder --linux --publish always",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name": "Syncpoint GmbH",
"email": "office@syncpoint.io"
},
"license": "AGPLv3",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/eslint-parser": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/register": "^7.28.3",
"@electron/notarize": "^3.1.1",
"babel-loader": "^10.0.0",
"c8": "^10.1.3",
"css-loader": "^7.1.2",
"electron": "^38.8.0",
"electron-builder": "^26.7.0",
"electron-updater": "^6.1.4",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.4",
"memdown": "^6.1.1",
"mocha": "^11.7.4",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.102.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"yaml": "^2.8.1"
},
"overrides": {
"react-virtual": {
"react": "^18.0.0"
}
},
"dependencies": {
"@mdi/js": "^7.0.96",
"@mdi/react": "^1.6.0",
"@syncpoint/matrix-client-api": "^2.3.0",
"@syncpoint/signal": "^1.3.0",
"@syncpoint/signs": "^1.1.0",
"@syncpoint/wkx": "^0.5.2",
"abstract-leveldown": "^7.2.0",
"color": "^5.0.2",
"dotenv": "^17.2.3",
"fuse.js": "^7.1.0",
"geo-coordinates-parser": "^1.7.4",
"geodesy": "^2.4.0",
"jexl": "^2.3.0",
"jspdf": "^4.1.0",
"jsts": "^2.12.1",
"kbar": "^0.1.0-beta.43",
"leveldown": "^6.1.1",
"levelup": "^5.0.1",
"luxon": "^3.7.2",
"minisearch": "^7.2.0",
"mousetrap": "^1.6.5",
"mousetrap-global-bind": "^1.1.0",
"ol": "^10.6.1",
"path-to-regexp": "^8.3.0",
"proj4": "^2.19.10",
"ramda": "^0.32.0",
"rbush": "^4.0.1",
"react": "^18.3.1",
"react-cool-virtual": "^0.7.0",
"react-dom": "^18.3.1",
"react-easy-sort": "^1.7.0",
"react-fast-compare": "^3.2.0",
"react-tooltip": "^5.29.1",
"reproject": "^1.2.7",
"sanitize-filename": "^1.6.3",
"subleveldown": "^6.0.1",
"throttle-debounce": "^5.0.2",
"typeface-roboto": "^1.1.13",
"uniqolor": "^1.1.1"
}
}