-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 960 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 960 Bytes
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
{
"name": "remote-plotting",
"version": "2.0.0",
"description": "Multi-machine remote plotting dashboard for AxiDraw and NextDraw",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "DOTENV_CONFIG_QUIET=true nodemon server.js",
"start": "node server.js",
"lint": "standard",
"test": "echo \"No tests configured yet\""
},
"repository": {
"type": "git",
"url": "git+https://revdancatt@github.com/revdancatt/remote-plotting.git"
},
"author": "revdancatt",
"license": "ISC",
"bugs": {
"url": "https://github.com/revdancatt/remote-plotting/issues"
},
"homepage": "https://github.com/revdancatt/remote-plotting#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"nodemon": "^3.1.10",
"standard": "^17.1.2"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-handlebars": "^8.0.1",
"multer": "^2.0.2",
"socket.io": "^4.8.1"
}
}