-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
97 lines (97 loc) · 2.59 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
{
"name": "Rpanion-server",
"version": "0.10.0",
"private": true,
"secure": false,
"dependencies": {
"app-root-path": "^3.1.0",
"bootstrap": "^5.3.1",
"compression": "^1.7.4",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^7.4.1",
"express-validator": "^7.0.1",
"moment": "^2.29.4",
"node-mavlink": "^2.0.5",
"npm": "^10.5.2",
"ntrip-client": "^1.1.1",
"nyc": "^17.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.15.0",
"react-scripts": "^5.0.1",
"react-select": "^5.7.4",
"rsync": "^0.6.1",
"serialport": "^12.0.0",
"settings-store": "^1.4.1",
"shx": "^0.3.4",
"socket.io": "^4.8.0",
"socket.io-client": "^4.7.2",
"startbootstrap-simple-sidebar": "^6.0.6",
"systeminformation": "^5.21.7",
"winston": "^3.10.0"
},
"bin": {
"coveralls": "./bin/coveralls.js"
},
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"testfront": "DISABLE_ESLINT_PLUGIN=true react-scripts test",
"testback": " mocha --exit ./server/*.test.js ./mavlink/*.test.js",
"mocha": "_mocha --exit ./server/*.test.js ./mavlink/*.test.js",
"test-cov": "nyc npm run mocha",
"test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose",
"lint": "eslint .",
"eject": "react-scripts eject",
"server": "node-env-run server --exec nodemon | pino-colada",
"service": "node ./server/index.js",
"dev": "run-p server start"
},
"proxy": "http://localhost:3001",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@eslint/js": "^9.13.0",
"body-parser": "^1.20.2",
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.2",
"express": "^4.21.2",
"globals": "^15.11.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"node-env-run": "^4.0.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"pino-colada": "^2.2.2",
"pino-http": "^10.3.0",
"should": "^13.2.3"
},
"nyc": {
"all": true,
"include": [
"server/**/*.js",
"mavlink/mavManager.js"
],
"exclude": [
"server/**/*.test.js"
],
"reporter": [
"lcov",
"text-summary"
]
},
"overrides": {
"autoprefixer": "10.4.5"
}
}