-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 944 Bytes
/
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
{
"name": "express-mqtt-like",
"version": "0.0.1",
"description": "Explain MQTT protocol through websockets",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "husky install",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riskycase/express-mqtt-like.git"
},
"author": "Hrishikesh Patil <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/riskycase/express-mqtt-like/issues"
},
"homepage": "https://github.com/riskycase/express-mqtt-like#readme",
"dependencies": {
"express": "^4.18.1",
"ws": "^8.8.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ws": "^8.5.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{html,css,js,ts}": "prettier --write"
}
}