-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
50
51
52
53
54
55
56
{
"name": "remote-control-webapp",
"version": "0.1.0",
"private": true,
"description": "Remote desktop web app built with RobotJS",
"keywords": [
"nodejs",
"remote",
"desktop",
"webapp",
"robotjs",
"keyboard",
"mouse",
"autohotkey"
],
"repository": {
"type": "git",
"url": "https://github.com/imprevo/remote-control-webapp"
},
"author": "imprevo",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "NODE_ENV=development DEBUG=remote-control* nodemon -e js,json,hbs ./src",
"start": "NODE_ENV=production node ./src",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md,json,hbs}\"",
"lint": "eslint . --cache --fix"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"express": "~4.18.2",
"hbs": "~4.2.0",
"http-errors": "~2.0.0",
"http-status-codes": "^2.2.0",
"ip": "^1.1.8",
"morgan": "~1.10.0",
"open": "^8.4.0",
"qrcode": "^1.5.1",
"robotjs": "^0.6.0"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3"
},
"lint-staged": {
"*.{js,css,md,json,hbs}": "prettier --write",
"*.js": "eslint --cache --fix"
}
}