-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "spot-server-js",
"version": "1.0.0",
"description": "A simple server to simulate a Spot's robot for testing purpose.",
"main": "src/server.js",
"files": [
"src"
],
"scripts": {
"start": "node src/server.js",
"dev": "npm start -- --dev",
"prod": "npm start",
"lint": "eslint --config .eslintrc.json .",
"build": "build-opencv --version 4.6.0 build",
"rebuild": "build-opencv --version 4.6.0 --nobuild rebuild"
},
"bin": {
"spot-server-js": "node src/server.js",
"ssj": "node src/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TheoPierne/spot-server-js.git"
},
"bugs": {
"url": "https://github.com/TheoPierne/spot-server-js/issues"
},
"author": "Théo Pierné",
"license": "MIT",
"engines": {
"node": ">=16.13.0"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.0",
"@u4/opencv4nodejs": "^6.5.2",
"argparse": "^2.0.1",
"google-protobuf": "^3.21.2",
"lodash": "^4.17.21",
"luxon": "^3.4.0",
"winston": "^3.10.0"
}
}