-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 991 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
38
39
{
"name": "node-pi-server",
"version": "1.0.0",
"description": "A node.js based Raspberry PI server",
"main": "out/server.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"make": "npm i && npm run build",
"start": "node out/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doronguttman/node-pi-server.git"
},
"keywords": [
"raspberry",
"pi",
"node",
"server"
],
"author": "Doron Guttman",
"license": "MIT",
"bugs": {
"url": "https://github.com/doronguttman/node-pi-server/issues"
},
"homepage": "https://github.com/doronguttman/node-pi-server#readme",
"dependencies": {
"express": "^4.16.3",
"node-telegram-bot-api": "^0.30.0",
"onoff": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^9.6.0",
"@types/node-telegram-bot-api": "^0.28.2",
"@types/onoff": "^0.0.27"
}
}