forked from syncpoint/ODIN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.14 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "odin-c2is",
"version": "0.19.0",
"description": "ODIN Command and Control Information System",
"main": "dist/main.js",
"scripts": {
"start": "electron . --noDevServer",
"hot": "webpack serve",
"webpack": "webpack",
"webpack:production": "webpack --mode='production'",
"builder": "electron-builder --publish=never -mlw",
"builder:dir": "electron-builder --dir",
"builder:mac": "electron-builder --mac",
"builder:win": "electron-builder --win",
"builder:linux": "electron-builder --linux",
"release": "electron-builder -mlw --publish always",
"eslint": "eslint src/",
"test": "mocha --require ./test/register.js --require ignore-styles --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/syncpoint/ODIN.git"
},
"keywords": [
"c2is"
],
"author": {
"name": "Syncpoint GmbH",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0",
"acorn": "^8.7.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.7",
"electron": "^16.2.2",
"electron-builder": "^23.0.4",
"electron-notarize": "^1.1.1",
"electron-publish": "^22.14.7",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.26.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"ignore-styles": "^5.0.1",
"mocha": "^9.1.3",
"style-loader": "^2.0.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"archiver": "^5.3.0",
"dom-to-image-more": "^2.8.0",
"dompurify": "^2.3.3",
"dotenv": "^10.0.0",
"electron-settings": "^3.2.0",
"electron-updater": "^4.6.1",
"geodesy": "^2.2.1",
"geographiclib": "^1.52.0",
"i18next": "^21.5.4",
"jexl": "^2.3.0",
"jspdf": "^2.4.0",
"jsts": "^2.7.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lunr": "^2.3.9",
"luxon": "^2.1.1",
"mathjs": "^10.0.0",
"mdi-material-ui": "^6.22.1",
"mgrs": "^1.0.0",
"milsymbol": "^2.0.0",
"minimist": "^1.2.5",
"mousetrap": "^1.6.5",
"node-stream-zip": "^1.15.0",
"ol": "^6.9.0",
"performance-now": "^2.1.0",
"proj4": "^2.7.5",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.14.3",
"react-imask": "^6.2.2",
"react-window": "^1.8.6",
"sanitize-filename": "^1.6.3",
"typeface-roboto": "1.1.13",
"uuid-random": "^1.3.2",
"zustand": "^3.6.6"
}
}