-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "print-farm-manager",
"version": "1.0.0",
"description": "Centralized print farm management for multi-brand 3D printer fleets",
"author": "Joel Telling",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joeltelling/print-farm-manager.git"
},
"engines": {
"node": ">=22.0.0 <24"
},
"keywords": [
"3d-printing",
"print-farm",
"prusa",
"bambu",
"klipper",
"elegoo",
"self-hosted"
],
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/index.js",
"client": "npm run dev --prefix client",
"build": "npm run build --prefix client",
"start": "node server/index.js",
"test": "jest --testPathPatterns=server/tests",
"postinstall": "patch-package"
},
"dependencies": {
"axios": "^1.7.2",
"basic-ftp": "^5.2.1",
"better-sqlite3": "^9.6.0",
"concurrently": "^8.2.2",
"express": "^4.19.2",
"form-data": "^4.0.5",
"mqtt": "^5.15.1",
"multer": "^2.2.0",
"papaparse": "^5.4.1",
"sdcp": "^0.5.4"
},
"devDependencies": {
"jest": "^30.3.0",
"patch-package": "^8.0.1",
"supertest": "^7.2.2"
}
}