-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
110 lines (110 loc) · 2.98 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "fabmo-engine",
"description": "The Engine for running the FabMo platform",
"author": "ShopBotTools",
"repository": "https://github.com/FabMo/FabMo-Engine.git",
"license": "MIT",
"main": "dashboard/static/test.js",
"config": {
"unsafe-perm": true
},
"dependencies": {
"adm-zip": "0.5.9",
"async": "1.4.x",
"backbone": "1.4.0",
"client-sessions": "0.8.0",
"cnctosvg": "1.0.x",
"colors": "1.1.x",
"debug": "4.3.1",
"delaunay-triangulate": "1.1.6",
"es6-promise": "3.2.1",
"escape-regexp-component": "1.0.2",
"eslint": "^8.15.0",
"eslint-plugin-jest": "^26.2.2",
"fs-extra": "0.23.1",
"glob": "5.0.15",
"got": "^11.8.6",
"jquery": "2.2.4",
"jsesc": "1.0.0",
"mime-types": "^2.1.30",
"minimist": "^1.2.7",
"modbus-serial": "^8.0.16",
"moment": "^2.0.0",
"ncp": "2.0.0",
"pako": "1.0.4",
"passport-local": "FabMo/passport-restify-local",
"prettier": "^2.6.2",
"process": "0.11.8",
"q": "^1.0.1",
"restify": "^11.0.0",
"serialport": "^9.2.0",
"socket.io": "^4.1.1",
"socket.io-client": "^4.1.1",
"text-loader": "0.0.1",
"tingodb": "^0.6.1",
"tmp": "0.0.31",
"toastr": "^2.1.4",
"underscore": "^1.13.6",
"uuid": "8.3.2",
"wireless-tools": "0.19.0",
"xml2js": "0.5.0"
},
"optionalDependencies": {
"udev": "0.6.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"assert-plus": "1.0.0",
"babel-loader": "^8.2.2",
"chokidar": "3.5.1",
"clean-webpack-plugin": "3.0.0",
"css-loader": "^5.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "^4.0.0",
"grunt": "1.5.3",
"html-webpack-plugin": "^5.3.1",
"husky": "^8.0.2",
"jest": "^28.1.1",
"lint-staged": "^13.1.0",
"mime": "3.0.0",
"mini-css-extract-plugin": "^1.5.0",
"passport-restify": "^1.0.1",
"source-map-loader": "^1.0.0",
"webpack": "5.76.0",
"webpack-cli": "^5.0.1"
},
"engine": "node 16.14.0",
"apidoc": {
"name": "FabMo Engine",
"version": "0.0.0",
"description": "FabMo-Engine",
"title": "FabMo-Engine API Documentation"
},
"scripts": {
"start": "node server.js",
"debug": "node server.js --debug ",
"webpack": "npx webpack",
"postinstall": "npx webpack --mode=development",
"prod": "npx webpack --mode=development",
"dev": "npm run build && npm run debugserver",
"install-and-dev": "npm install && npm run dev",
"build": "webpack --mode=development && npm run copybuiltfiles && npm run initSystemFiles",
"copybuiltfiles": "sh build_scripts/copy_built_files.sh",
"initSystemFiles": "sh build_scripts/init_system_files.sh",
"debugserver": "node server.js --debug",
"build:dev": "npx webpack --mode=development",
"build:prod": "npx webpack --mode=development",
"watch": "npx webpack --watch",
"serve": "npx webpack serve",
"test": "npx jest --verbose",
"lint": "npx eslint .",
"prettier": "npx prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"version": "1.00.02"
}