-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.92 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
{
"name": "GCS",
"version": "0.13.0",
"license": "MIT",
"author": "Northrop Grumman Collaboration Project",
"description": "Ground Control Station for autonomous vehicle platforms in NGCP",
"repository": "https://github.com/NGCP/GCS",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"test:lint": "npm run test:eslint && npm run test:stylelint && npm run test:remarklint",
"test:eslint": "eslint --ext .js,.jsx,.ts,.tsx \".\"",
"test:stylelint": "stylelint \"**/*.css\"",
"test:remarklint": "remark . --frail",
"test:types": "tsc --project . --outDir dist --pretty",
"test:unit": "nyc mocha --require ts-node/register test/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "electron-webpack dev",
"docs": "mkdocs serve",
"build": "electron-webpack && electron-builder"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"leaflet": "^1.6.0",
"leaflet.offline": "^1.0.6",
"moment": "^2.24.0",
"msgpack-lite": "^0.1.26",
"prop-types": "^15.7.2",
"rc-slider": "^8",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-leaflet": "^2.6.1",
"react-leaflet-control": "^2.1.2",
"react-virtualized": "^9.21.2",
"serialport": "^8.0.7",
"source-map-support": "^0.5.16",
"xbee-api": "^0.6.0"
},
"devDependencies": {
"@babel/preset-react": "^7.8.3",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/msgpack-lite": "^0.1.7",
"@types/node": "^12.12.29",
"@types/rc-slider": "^8.6.5",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-leaflet": "^2.5.0",
"@types/react-virtualized": "^9.21.7",
"@types/serialport": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"dotenv-webpack": "^1.7.0",
"electron": "^8.0.3",
"electron-builder": "^22.3.2",
"electron-webpack": "^2.7.4",
"electron-webpack-ts": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"remark-cli": "^8.0.0",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"stylelint": "^13.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.5"
},
"electronWebpack": {
"main": {
"webpackConfig": "webpack.config.js"
},
"renderer": {
"webpackConfig": "webpack.config.js"
}
}
}