-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.23 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.23 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
{
"name": "odin-c2is",
"version": "0.8.0",
"description": "ODIN Command and Control Information System",
"main": "dist/main.js",
"scripts": {
"start": "electron . --noDevServer",
"hot": "webpack-dev-server --hot --inline",
"webpack": "webpack",
"webpack:production": "webpack --env.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": "electron-mocha --require ./test/register.js --require ./test/helpers.js --require ./test/dom.js --require ignore-styles --recursive",
"spectron": "mocha --require @babel/register --recursive spectron"
},
"repository": {
"type": "git",
"url": "https://github.com/syncpoint/ODIN.git"
},
"keywords": [
"c2is"
],
"author": {
"name": "Syncpoint GmbH",
"email": "office@syncpoint.io"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"css-loader": "^3.6.0",
"electron": "^8.5.3",
"electron-builder": "^22.9.1",
"electron-mocha": "^8.2.1",
"electron-notarize": "^1.0.0",
"electron-publish": "^22.9.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.4.0",
"mocha": "^7.1.1",
"sinon": "^9.1.0",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"archiver": "^3.1.1",
"dotenv": "^8.2.0",
"electron-settings": "^3.2.0",
"electron-updater": "^4.3.5",
"geodesy": "^2.2.1",
"geographiclib": "^1.50.0",
"i18next": "^19.7.0",
"immutable": "^4.0.0-rc.12",
"jsts": "^2.6.1",
"lodash.throttle": "^4.1.1",
"lunr": "^2.3.9",
"luxon": "^1.25.0",
"mathjs": "^6.6.5",
"mdi-material-ui": "^6.19.0",
"mgrs": "^1.0.0",
"milsymbol": "^2.0.0",
"minimist": "^1.2.5",
"mousetrap": "^1.6.5",
"node-stream-zip": "^1.11.3",
"ol": "^6.4.3",
"proj4": "^2.6.2",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "^16.14.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.3",
"react-window": "^1.8.5",
"sanitize-filename": "^1.6.3",
"spectron": "^10.0.1",
"typeface-roboto": "0.0.75",
"uuid-random": "^1.3.2"
}
}